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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'src/chrome/test/data/perf/canvas_bench': | 198 'src/chrome/test/data/perf/canvas_bench': |
199 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 199 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
200 | 200 |
201 'src/chrome/test/data/perf/frame_rate/content': | 201 'src/chrome/test/data/perf/frame_rate/content': |
202 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 202 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
203 | 203 |
204 'src/third_party/bidichecker': | 204 'src/third_party/bidichecker': |
205 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 205 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
206 | 206 |
207 'src/third_party/webgl/src': | 207 'src/third_party/webgl/src': |
208 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '34ac01c7aae
98e74fbe14a6eb73297babb17c443', | 208 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '152f156d821
aeeb688d0979daa529cdad44c0bc7', |
209 | 209 |
210 'src/third_party/swig/Lib': | 210 'src/third_party/swig/Lib': |
211 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', | 211 Var('chromium_git') + '/chromium/deps/swig/Lib.git' + '@' + 'f2a695d52e61e6a8
d967731434f165ed400f0d69', |
212 | 212 |
213 'src/third_party/webdriver/pylib': | 213 'src/third_party/webdriver/pylib': |
214 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 214 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
215 | 215 |
216 'src/third_party/libvpx': | 216 'src/third_party/libvpx': |
217 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 217 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
218 | 218 |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 # corresponding .py files have already been deleted. | 774 # corresponding .py files have already been deleted. |
775 'name': 'remove_stale_pyc_files', | 775 'name': 'remove_stale_pyc_files', |
776 'pattern': 'src/tools/.*\\.py', | 776 'pattern': 'src/tools/.*\\.py', |
777 'action': [ | 777 'action': [ |
778 'python', | 778 'python', |
779 'src/tools/remove_stale_pyc_files.py', | 779 'src/tools/remove_stale_pyc_files.py', |
780 'src/tools', | 780 'src/tools', |
781 ], | 781 ], |
782 }, | 782 }, |
783 ] | 783 ] |
OLD | NEW |