| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', | 352 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', |
| 353 | 353 |
| 354 'src/third_party/google_toolbox_for_mac/src': | 354 'src/third_party/google_toolbox_for_mac/src': |
| 355 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 355 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
| 356 | 356 |
| 357 'src/third_party/nss': | 357 'src/third_party/nss': |
| 358 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 358 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
| 359 | 359 |
| 360 # class-dump utility to generate header files for undocumented SDKs | 360 # class-dump utility to generate header files for undocumented SDKs |
| 361 'src/testing/iossim/third_party/class-dump': | 361 'src/testing/iossim/third_party/class-dump': |
| 362 Var('chromium_git') + '/chromium/deps/class-dump.git' + '@' + '89bd40883c76
7584240b4dade8b74e6f57b9bdab', | 362 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'77fb7f0a2953f10501768c7551aad261fa1310b9', |
| 363 | 363 |
| 364 # Code that's not needed due to not building everything | 364 # Code that's not needed due to not building everything |
| 365 'src/chrome/test/data/perf/canvas_bench': None, | 365 'src/chrome/test/data/perf/canvas_bench': None, |
| 366 'src/chrome/test/data/perf/frame_rate/content': None, | 366 'src/chrome/test/data/perf/frame_rate/content': None, |
| 367 'src/native_client': None, | 367 'src/native_client': None, |
| 368 'src/third_party/ffmpeg': None, | 368 'src/third_party/ffmpeg': None, |
| 369 'src/third_party/hunspell_dictionaries': None, | 369 'src/third_party/hunspell_dictionaries': None, |
| 370 'src/third_party/hunspell': None, | 370 'src/third_party/hunspell': None, |
| 371 'src/third_party/webgl': None, | 371 'src/third_party/webgl': None, |
| 372 }, | 372 }, |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
| 787 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
| 788 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
| 789 'action': [ | 789 'action': [ |
| 790 'python', | 790 'python', |
| 791 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
| 792 'src/tools', | 792 'src/tools', |
| 793 ], | 793 ], |
| 794 }, | 794 }, |
| 795 ] | 795 ] |
| OLD | NEW |