OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'src/chrome/test/data/perf/canvas_bench': | 190 'src/chrome/test/data/perf/canvas_bench': |
191 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 191 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
192 | 192 |
193 'src/chrome/test/data/perf/frame_rate/content': | 193 'src/chrome/test/data/perf/frame_rate/content': |
194 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 194 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
195 | 195 |
196 'src/third_party/bidichecker': | 196 'src/third_party/bidichecker': |
197 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 197 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
198 | 198 |
199 'src/third_party/webgl/src': | 199 'src/third_party/webgl/src': |
200 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'ff796782c58
1a03c5f36e547b8218a23083c8534', | 200 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '0c2bcf36a74
0181f50ce94a0eaad357219441dee', |
201 | 201 |
202 'src/third_party/swig/Lib': | 202 'src/third_party/swig/Lib': |
203 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 203 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
204 | 204 |
205 'src/third_party/webdriver/pylib': | 205 'src/third_party/webdriver/pylib': |
206 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 206 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
207 | 207 |
208 'src/third_party/libvpx': | 208 'src/third_party/libvpx': |
209 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 209 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
210 | 210 |
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
778 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
779 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
780 'action': [ | 780 'action': [ |
781 'python', | 781 'python', |
782 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
783 'src/tools', | 783 'src/tools', |
784 ], | 784 ], |
785 }, | 785 }, |
786 ] | 786 ] |
OLD | NEW |