| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 | 337 |
| 338 # Binaries for nacl sdk. | 338 # Binaries for nacl sdk. |
| 339 'src/third_party/nacl_sdk_binaries': | 339 'src/third_party/nacl_sdk_binaries': |
| 340 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 340 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 341 | 341 |
| 342 # Omaha code for src/app_installer/. | 342 # Omaha code for src/app_installer/. |
| 343 'src/third_party/omaha/src/omaha': | 343 'src/third_party/omaha/src/omaha': |
| 344 Var('chromium_git') + '/external/omaha.git' + '@' + '098c7a3d157218dab4eed5
95e8f2fbe5a20a0bae', | 344 Var('chromium_git') + '/external/omaha.git' + '@' + '098c7a3d157218dab4eed5
95e8f2fbe5a20a0bae', |
| 345 }, | 345 }, |
| 346 'ios': { | 346 'ios': { |
| 347 'src/ios/third_party/gcdwebserver/src': |
| 348 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '18889793b75d7ee593d62ac88997caad850acdb6', |
| 349 |
| 347 'src/third_party/google_toolbox_for_mac/src': | 350 'src/third_party/google_toolbox_for_mac/src': |
| 348 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 351 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
| 349 | 352 |
| 350 'src/third_party/nss': | 353 'src/third_party/nss': |
| 351 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 354 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
| 352 | 355 |
| 353 # class-dump utility to generate header files for undocumented SDKs | 356 # class-dump utility to generate header files for undocumented SDKs |
| 354 'src/testing/iossim/third_party/class-dump': | 357 'src/testing/iossim/third_party/class-dump': |
| 355 Var('chromium_git') + '/chromium/deps/class-dump.git' + '@' + '89bd40883c76
7584240b4dade8b74e6f57b9bdab', | 358 Var('chromium_git') + '/chromium/deps/class-dump.git' + '@' + '89bd40883c76
7584240b4dade8b74e6f57b9bdab', |
| 356 | 359 |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
| 775 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
| 776 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
| 777 'action': [ | 780 'action': [ |
| 778 'python', | 781 'python', |
| 779 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
| 780 'src/tools', | 783 'src/tools', |
| 781 ], | 784 ], |
| 782 }, | 785 }, |
| 783 ] | 786 ] |
| OLD | NEW |