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': '4c670a47efee15429ab7374ec622f52eb6731eb0', | 9 'chromium_revision': '4c670a47efee15429ab7374ec622f52eb6731eb0', |
10 } | 10 } |
(...skipping 24 matching lines...) Expand all Loading... |
35 '-base', | 35 '-base', |
36 '-chromium', | 36 '-chromium', |
37 '+external/webrtc/webrtc', # Android platform build. | 37 '+external/webrtc/webrtc', # Android platform build. |
38 '+gflags', | 38 '+gflags', |
39 '+libyuv', | 39 '+libyuv', |
40 '+net', | 40 '+net', |
41 '+talk', | 41 '+talk', |
42 '+testing', | 42 '+testing', |
43 '+third_party', | 43 '+third_party', |
44 '+unicode', | 44 '+unicode', |
| 45 '+usrsctplib', |
45 '+webrtc', | 46 '+webrtc', |
46 '+vpx', | 47 '+vpx', |
47 ] | 48 ] |
48 | 49 |
49 hooks = [ | 50 hooks = [ |
50 { | 51 { |
51 # Check for legacy named top-level dir (named 'trunk'). | 52 # Check for legacy named top-level dir (named 'trunk'). |
52 'name': 'check_root_dir_name', | 53 'name': 'check_root_dir_name', |
53 'pattern': '.', | 54 'pattern': '.', |
54 'action': ['python','-c', | 55 'action': ['python','-c', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 }, | 109 }, |
109 { | 110 { |
110 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 111 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
111 'name': 'gyp', | 112 'name': 'gyp', |
112 'pattern': '.', | 113 'pattern': '.', |
113 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 114 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
114 Var('extra_gyp_flag')], | 115 Var('extra_gyp_flag')], |
115 }, | 116 }, |
116 ] | 117 ] |
117 | 118 |
OLD | NEW |