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