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' + '@' + '08e33932af979a29a
09b9d893f93132757dc05b6', | 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '5b741be8cc6b746d4
a77eab8a4434078affe65be', |
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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 'src/tools', | 812 'src/tools', |
813 ], | 813 ], |
814 }, | 814 }, |
815 { | 815 { |
816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
817 'name': 'gyp', | 817 'name': 'gyp', |
818 'pattern': '.', | 818 'pattern': '.', |
819 'action': ['python', 'src/build/gyp_chromium'], | 819 'action': ['python', 'src/build/gyp_chromium'], |
820 }, | 820 }, |
821 ] | 821 ] |
OLD | NEW |