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 { |
38 # Clone chromium and its deps. | 49 # Clone chromium and its deps. |
39 'name': 'sync chromium', | 50 'name': 'sync chromium', |
40 'pattern': '.', | 51 'pattern': '.', |
41 'action': ['python', '-u', 'src/sync_chromium.py', | 52 'action': ['python', '-u', 'src/sync_chromium.py', |
42 '--target-revision', Var('chromium_revision')], | 53 '--target-revision', Var('chromium_revision')], |
43 }, | 54 }, |
44 { | 55 { |
45 # Create links to shared dependencies in Chromium. | 56 # Create links to shared dependencies in Chromium. |
46 'name': 'setup_links', | 57 'name': 'setup_links', |
47 'pattern': '.', | 58 'pattern': '.', |
(...skipping 30 matching lines...) Expand all Loading... |
78 '--directory', | 89 '--directory', |
79 '--recursive', | 90 '--recursive', |
80 '--num_threads=10', | 91 '--num_threads=10', |
81 '--no_auth', | 92 '--no_auth', |
82 '--quiet', | 93 '--quiet', |
83 '--bucket', 'chromium-webrtc-resources', | 94 '--bucket', 'chromium-webrtc-resources', |
84 'src/resources'], | 95 'src/resources'], |
85 }, | 96 }, |
86 ] | 97 ] |
87 | 98 |
OLD | NEW |