| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 'src/third_party/mingw-w64/mingw/bin': | 350 'src/third_party/mingw-w64/mingw/bin': |
| 351 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', | 351 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
| 352 | 352 |
| 353 # Dependencies used by libjpeg-turbo | 353 # Dependencies used by libjpeg-turbo |
| 354 'src/third_party/yasm/binaries': | 354 'src/third_party/yasm/binaries': |
| 355 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', | 355 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', |
| 356 | 356 |
| 357 # Binaries for nacl sdk. | 357 # Binaries for nacl sdk. |
| 358 'src/third_party/nacl_sdk_binaries': | 358 'src/third_party/nacl_sdk_binaries': |
| 359 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 359 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 360 |
| 361 # Omaha code for src/app_installer/. |
| 362 'src/third_party/omaha/src/omaha': |
| 363 Var('chromium_git') + '/external/omaha.git' + '@' + '098c7a3d157218dab4eed5
95e8f2fbe5a20a0bae', |
| 360 }, | 364 }, |
| 361 'ios': { | 365 'ios': { |
| 362 'src/third_party/google_toolbox_for_mac/src': | 366 'src/third_party/google_toolbox_for_mac/src': |
| 363 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 367 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
| 364 | 368 |
| 365 'src/third_party/nss': | 369 'src/third_party/nss': |
| 366 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 370 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
| 367 | 371 |
| 368 # class-dump utility to generate header files for undocumented SDKs | 372 # class-dump utility to generate header files for undocumented SDKs |
| 369 'src/testing/iossim/third_party/class-dump': | 373 'src/testing/iossim/third_party/class-dump': |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
| 796 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
| 797 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
| 798 'action': [ | 802 'action': [ |
| 799 'python', | 803 'python', |
| 800 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
| 801 'src/tools', | 805 'src/tools', |
| 802 ], | 806 ], |
| 803 }, | 807 }, |
| 804 ] | 808 ] |
| OLD | NEW |