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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 # If you need to add a new host, contact chrome infrastracture team. | 103 # If you need to add a new host, contact chrome infrastracture team. |
104 allowed_hosts = [ | 104 allowed_hosts = [ |
105 'chromium.googlesource.com', | 105 'chromium.googlesource.com', |
106 'boringssl.googlesource.com', | 106 'boringssl.googlesource.com', |
107 'pdfium.googlesource.com', | 107 'pdfium.googlesource.com', |
108 'android.googlesource.com', | 108 'android.googlesource.com', |
109 ] | 109 ] |
110 | 110 |
111 deps = { | 111 deps = { |
112 'src/breakpad/src': | 112 'src/breakpad/src': |
113 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '7fef95a322beedadd
cca627e1a88b54411f586da', | 113 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '481608d284106df94
00d447e95574799670cabaf', |
114 | 114 |
115 'src/buildtools': | 115 'src/buildtools': |
116 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 116 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
117 | 117 |
118 'src/sdch/open-vcdiff': | 118 'src/sdch/open-vcdiff': |
119 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', | 119 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', |
120 | 120 |
121 'src/testing/gtest': | 121 'src/testing/gtest': |
122 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', | 122 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', |
123 | 123 |
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 'pattern': '\\.sha1', | 854 'pattern': '\\.sha1', |
855 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 855 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
856 }, | 856 }, |
857 { | 857 { |
858 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 858 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
859 'name': 'gyp', | 859 'name': 'gyp', |
860 'pattern': '.', | 860 'pattern': '.', |
861 'action': ['python', 'src/build/gyp_chromium'], | 861 'action': ['python', 'src/build/gyp_chromium'], |
862 }, | 862 }, |
863 ] | 863 ] |
OLD | NEW |