| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 'src/third_party/mingw-w64/mingw/bin': | 329 'src/third_party/mingw-w64/mingw/bin': |
| 330 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', | 330 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
| 331 | 331 |
| 332 # Dependencies used by libjpeg-turbo | 332 # Dependencies used by libjpeg-turbo |
| 333 'src/third_party/yasm/binaries': | 333 'src/third_party/yasm/binaries': |
| 334 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', | 334 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', |
| 335 | 335 |
| 336 # Binaries for nacl sdk. | 336 # Binaries for nacl sdk. |
| 337 'src/third_party/nacl_sdk_binaries': | 337 'src/third_party/nacl_sdk_binaries': |
| 338 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 338 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 339 | |
| 340 # Omaha code for src/app_installer/. | |
| 341 'src/third_party/omaha/src/omaha': | |
| 342 Var('chromium_git') + '/external/omaha.git' + '@' + '098c7a3d157218dab4eed5
95e8f2fbe5a20a0bae', | |
| 343 }, | 339 }, |
| 344 'ios': { | 340 'ios': { |
| 345 'src/ios/third_party/gcdwebserver/src': | 341 'src/ios/third_party/gcdwebserver/src': |
| 346 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', | 342 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', |
| 347 | 343 |
| 348 'src/third_party/google_toolbox_for_mac/src': | 344 'src/third_party/google_toolbox_for_mac/src': |
| 349 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 345 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
| 350 | 346 |
| 351 'src/third_party/nss': | 347 'src/third_party/nss': |
| 352 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 348 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 # corresponding .py files have already been deleted. | 757 # corresponding .py files have already been deleted. |
| 762 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
| 763 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
| 764 'action': [ | 760 'action': [ |
| 765 'python', | 761 'python', |
| 766 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
| 767 'src/tools', | 763 'src/tools', |
| 768 ], | 764 ], |
| 769 }, | 765 }, |
| 770 ] | 766 ] |
| OLD | NEW |