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': '8cf53d6715889128e790939ce36e827071984a40', | 9 'chromium_revision': '8cf53d6715889128e790939ce36e827071984a40', |
10 } | 10 } |
(...skipping 28 matching lines...) Expand all Loading... |
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 '+webrtc', | 45 '+webrtc', |
46 '+vpx', | 46 '+vpx', |
47 ] | 47 ] |
48 | 48 |
49 # checkdeps.py shouldn't check include paths for files in these dirs: | |
50 skip_child_includes = [ | |
51 'webrtc/overrides', | |
52 ] | |
53 | |
54 hooks = [ | 49 hooks = [ |
55 { | 50 { |
56 # Check for legacy named top-level dir (named 'trunk'). | 51 # Check for legacy named top-level dir (named 'trunk'). |
57 'name': 'check_root_dir_name', | 52 'name': 'check_root_dir_name', |
58 'pattern': '.', | 53 'pattern': '.', |
59 'action': ['python','-c', | 54 'action': ['python','-c', |
60 ('import os,sys;' | 55 ('import os,sys;' |
61 'script = os.path.join("trunk","check_root_dir.py");' | 56 'script = os.path.join("trunk","check_root_dir.py");' |
62 '_ = os.system("%s %s" % (sys.executable,script)) ' | 57 '_ = os.system("%s %s" % (sys.executable,script)) ' |
63 'if os.path.exists(script) else 0')], | 58 'if os.path.exists(script) else 0')], |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 }, | 92 }, |
98 { | 93 { |
99 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
100 'name': 'gyp', | 95 'name': 'gyp', |
101 'pattern': '.', | 96 'pattern': '.', |
102 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 97 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
103 Var('extra_gyp_flag')], | 98 Var('extra_gyp_flag')], |
104 }, | 99 }, |
105 ] | 100 ] |
106 | 101 |
OLD | NEW |