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': 'cf9457edb7c734f509dd12149acd78410c518570', | 9 'chromium_revision': 'cf9457edb7c734f509dd12149acd78410c518570', |
10 } | 10 } |
(...skipping 17 matching lines...) Expand all Loading... |
28 # Check for legacy named top-level dir (named 'trunk'). | 28 # Check for legacy named top-level dir (named 'trunk'). |
29 'name': 'check_root_dir_name', | 29 'name': 'check_root_dir_name', |
30 'pattern': '.', | 30 'pattern': '.', |
31 'action': ['python','-c', | 31 'action': ['python','-c', |
32 ('import os,sys;' | 32 ('import os,sys;' |
33 'script = os.path.join("trunk","check_root_dir.py");' | 33 'script = os.path.join("trunk","check_root_dir.py");' |
34 '_ = os.system("%s %s" % (sys.executable,script)) ' | 34 '_ = os.system("%s %s" % (sys.executable,script)) ' |
35 'if os.path.exists(script) else 0')], | 35 'if os.path.exists(script) else 0')], |
36 }, | 36 }, |
37 { | 37 { |
38 # TODO(kjellander): Remove when (crbug.com/644722 is fixed. | |
39 # This prunes origin for the mockito repo, which has some conflicting refs | |
40 # in the remote. | |
41 'name': 'local_prune_mockito_refs', | |
42 'pattern': '.', | |
43 'action': [ | |
44 'python', | |
45 'src/webrtc/build/prune_third_party_mockito_origin.py' | |
46 ], | |
47 }, | |
48 { | |
49 # Clone chromium and its deps. | 38 # Clone chromium and its deps. |
50 'name': 'sync chromium', | 39 'name': 'sync chromium', |
51 'pattern': '.', | 40 'pattern': '.', |
52 'action': ['python', '-u', 'src/sync_chromium.py', | 41 'action': ['python', '-u', 'src/sync_chromium.py', |
53 '--target-revision', Var('chromium_revision')], | 42 '--target-revision', Var('chromium_revision')], |
54 }, | 43 }, |
55 { | 44 { |
56 # Create links to shared dependencies in Chromium. | 45 # Create links to shared dependencies in Chromium. |
57 'name': 'setup_links', | 46 'name': 'setup_links', |
58 'pattern': '.', | 47 'pattern': '.', |
(...skipping 30 matching lines...) Expand all Loading... |
89 '--directory', | 78 '--directory', |
90 '--recursive', | 79 '--recursive', |
91 '--num_threads=10', | 80 '--num_threads=10', |
92 '--no_auth', | 81 '--no_auth', |
93 '--quiet', | 82 '--quiet', |
94 '--bucket', 'chromium-webrtc-resources', | 83 '--bucket', 'chromium-webrtc-resources', |
95 'src/resources'], | 84 'src/resources'], |
96 }, | 85 }, |
97 ] | 86 ] |
98 | 87 |
OLD | NEW |