Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: DEPS

Issue 1350393003: Remove overrides folder. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@update_overrides_in_build_files
Patch Set: Rebase. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/overrides/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | webrtc/overrides/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698