| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 'src/third_party/mingw-w64/mingw/bin': | 342 'src/third_party/mingw-w64/mingw/bin': |
| 343 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', | 343 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
| 344 | 344 |
| 345 # Dependencies used by libjpeg-turbo | 345 # Dependencies used by libjpeg-turbo |
| 346 'src/third_party/yasm/binaries': | 346 'src/third_party/yasm/binaries': |
| 347 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', | 347 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', |
| 348 | 348 |
| 349 # Binaries for nacl sdk. | 349 # Binaries for nacl sdk. |
| 350 'src/third_party/nacl_sdk_binaries': | 350 'src/third_party/nacl_sdk_binaries': |
| 351 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 351 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 352 |
| 353 # Omaha code for src/app_installer/. |
| 354 'src/third_party/omaha/src/omaha': |
| 355 Var('chromium_git') + '/external/omaha.git' + '@' + 'e2c3f15816f1a394e56433
de4fb58db30548fdb0', |
| 352 }, | 356 }, |
| 353 'ios': { | 357 'ios': { |
| 354 'src/third_party/google_toolbox_for_mac/src': | 358 'src/third_party/google_toolbox_for_mac/src': |
| 355 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), | 359 Var('chromium_git') + '/external/google-toolbox-for-mac.git' + '@' + Var('
google_toolbox_for_mac_revision'), |
| 356 | 360 |
| 357 'src/third_party/nss': | 361 'src/third_party/nss': |
| 358 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 362 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
| 359 | 363 |
| 360 # class-dump utility to generate header files for undocumented SDKs | 364 # class-dump utility to generate header files for undocumented SDKs |
| 361 'src/testing/iossim/third_party/class-dump': | 365 'src/testing/iossim/third_party/class-dump': |
| (...skipping 433 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 |