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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', | 343 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', |
344 | 344 |
345 'src/third_party/google_toolbox_for_mac/src': | 345 'src/third_party/google_toolbox_for_mac/src': |
346 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 346 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
347 | 347 |
348 'src/third_party/nss': | 348 'src/third_party/nss': |
349 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 349 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
350 | 350 |
351 # class-dump utility to generate header files for undocumented SDKs | 351 # class-dump utility to generate header files for undocumented SDKs |
352 'src/testing/iossim/third_party/class-dump': | 352 'src/testing/iossim/third_party/class-dump': |
353 Var('chromium_git') + '/chromium/deps/class-dump.git' + '@' + '89bd40883c76
7584240b4dade8b74e6f57b9bdab', | 353 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'77fb7f0a2953f10501768c7551aad261fa1310b9', |
354 | 354 |
355 # Code that's not needed due to not building everything | 355 # Code that's not needed due to not building everything |
356 'src/chrome/test/data/perf/canvas_bench': None, | 356 'src/chrome/test/data/perf/canvas_bench': None, |
357 'src/chrome/test/data/perf/frame_rate/content': None, | 357 'src/chrome/test/data/perf/frame_rate/content': None, |
358 'src/native_client': None, | 358 'src/native_client': None, |
359 'src/third_party/ffmpeg': None, | 359 'src/third_party/ffmpeg': None, |
360 'src/third_party/hunspell_dictionaries': None, | 360 'src/third_party/hunspell_dictionaries': None, |
361 'src/third_party/webgl': None, | 361 'src/third_party/webgl': None, |
362 }, | 362 }, |
363 'mac': { | 363 'mac': { |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 # corresponding .py files have already been deleted. | 757 # corresponding .py files have already been deleted. |
758 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
759 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
760 'action': [ | 760 'action': [ |
761 'python', | 761 'python', |
762 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
763 'src/tools', | 763 'src/tools', |
764 ], | 764 ], |
765 }, | 765 }, |
766 ] | 766 ] |
OLD | NEW |