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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 'src/third_party/bidichecker': | 175 'src/third_party/bidichecker': |
176 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 176 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
177 | 177 |
178 'src/third_party/webgl/src': | 178 'src/third_party/webgl/src': |
179 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8bae
a808f3bc9fcef945d66b5f740c32b', | 179 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8bae
a808f3bc9fcef945d66b5f740c32b', |
180 | 180 |
181 'src/third_party/webdriver/pylib': | 181 'src/third_party/webdriver/pylib': |
182 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 182 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
183 | 183 |
184 'src/third_party/libvpx/source/libvpx': | 184 'src/third_party/libvpx/source/libvpx': |
185 Var('chromium_git') + '/webm/libvpx.git' + '@' + '9aa083d164e0d39086aa0c83f0
d1a0d0f0d1ba61', | 185 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'afd869308ef4283c5a2b5e530b
1f28cb9c596604', |
186 | 186 |
187 'src/third_party/ffmpeg': | 187 'src/third_party/ffmpeg': |
188 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', | 188 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', |
189 | 189 |
190 'src/third_party/libjingle/source/talk': | 190 'src/third_party/libjingle/source/talk': |
191 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '74207eb9bd0
531549670b56d662b1e02658bf529', # commit position 12032 | 191 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '74207eb9bd0
531549670b56d662b1e02658bf529', # commit position 12032 |
192 | 192 |
193 'src/third_party/usrsctp/usrsctplib': | 193 'src/third_party/usrsctp/usrsctplib': |
194 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', | 194 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', |
195 | 195 |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 'pattern': '\\.sha1', | 835 'pattern': '\\.sha1', |
836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
837 }, | 837 }, |
838 { | 838 { |
839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
840 'name': 'gyp', | 840 'name': 'gyp', |
841 'pattern': '.', | 841 'pattern': '.', |
842 'action': ['python', 'src/build/gyp_chromium'], | 842 'action': ['python', 'src/build/gyp_chromium'], |
843 }, | 843 }, |
844 ] | 844 ] |
OLD | NEW |