OLD | NEW |
1 # This file contains dependencies for WebRTC that are not shared with Chromium. | 1 # This file contains dependencies for WebRTC that are not shared with Chromium. |
2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a | 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a |
3 # directory from the Chromium checkout, you should add it to setup_links.py | 3 # directory from the Chromium checkout, you should add it to setup_links.py |
4 # instead. | 4 # instead. |
5 | 5 |
6 vars = { | 6 vars = { |
7 'extra_gyp_flag': '-Dextra_gyp_flag=0', | 7 'extra_gyp_flag': '-Dextra_gyp_flag=0', |
8 'chromium_git': 'https://chromium.googlesource.com', | 8 'chromium_git': 'https://chromium.googlesource.com', |
9 'chromium_revision': '6e6b751edaef93725d8ecd8142c32704bfe422e7', | 9 'chromium_revision': '6e6b751edaef93725d8ecd8142c32704bfe422e7', |
10 } | 10 } |
(...skipping 16 matching lines...) Expand all Loading... |
27 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@c0cbedd854cb610a53226d9817416c4ab9a7d1e9', # from svn revision 7951 | 27 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@c0cbedd854cb610a53226d9817416c4ab9a7d1e9', # from svn revision 7951 |
28 }, | 28 }, |
29 } | 29 } |
30 | 30 |
31 # Define rules for which include paths are allowed in our source. | 31 # Define rules for which include paths are allowed in our source. |
32 include_rules = [ | 32 include_rules = [ |
33 # Base is only used to build Android APK tests and may not be referenced by | 33 # Base is only used to build Android APK tests and may not be referenced by |
34 # WebRTC production code. | 34 # WebRTC production code. |
35 '-base', | 35 '-base', |
36 '-chromium', | 36 '-chromium', |
37 '+external/webrtc/webrtc', # Android platform build. | |
38 '+gflags', | 37 '+gflags', |
39 '+libyuv', | 38 '+libyuv', |
40 '+net', | 39 '+net', |
41 '+talk', | 40 '+talk', |
42 '+testing', | 41 '+testing', |
43 '+third_party', | 42 '+third_party', |
44 '+unicode', | 43 '+unicode', |
45 '+webrtc', | 44 '+webrtc', |
46 '+vpx', | 45 '+vpx', |
47 ] | 46 ] |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 }, | 96 }, |
98 { | 97 { |
99 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 98 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
100 'name': 'gyp', | 99 'name': 'gyp', |
101 'pattern': '.', | 100 'pattern': '.', |
102 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 101 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
103 Var('extra_gyp_flag')], | 102 Var('extra_gyp_flag')], |
104 }, | 103 }, |
105 ] | 104 ] |
106 | 105 |
OLD | NEW |