| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 # If you need to add a new host, contact chrome infrastracture team. | 99 # If you need to add a new host, contact chrome infrastracture team. |
| 100 allowed_hosts = [ | 100 allowed_hosts = [ |
| 101 'chromium.googlesource.com', | 101 'chromium.googlesource.com', |
| 102 'boringssl.googlesource.com', | 102 'boringssl.googlesource.com', |
| 103 'pdfium.googlesource.com', | 103 'pdfium.googlesource.com', |
| 104 'android.googlesource.com', | 104 'android.googlesource.com', |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 deps = { | 107 deps = { |
| 108 'src/breakpad/src': | 108 'src/breakpad/src': |
| 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + 'f85e852cc4fe778fe
a36454d76ae8c7f7db32da6', | 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '60f99d4c6de8187b6
5f4999cc42f30e168655086', |
| 110 | 110 |
| 111 'src/buildtools': | 111 'src/buildtools': |
| 112 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 112 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
| 113 | 113 |
| 114 'src/sdch/open-vcdiff': | 114 'src/sdch/open-vcdiff': |
| 115 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', | 115 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', |
| 116 | 116 |
| 117 'src/testing/gtest': | 117 'src/testing/gtest': |
| 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', | 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', |
| 119 | 119 |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 'src/tools', | 822 'src/tools', |
| 823 ], | 823 ], |
| 824 }, | 824 }, |
| 825 { | 825 { |
| 826 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 826 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 827 'name': 'gyp', | 827 'name': 'gyp', |
| 828 'pattern': '.', | 828 'pattern': '.', |
| 829 'action': ['python', 'src/build/gyp_chromium'], | 829 'action': ['python', 'src/build/gyp_chromium'], |
| 830 }, | 830 }, |
| 831 ] | 831 ] |
| OLD | NEW |