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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 | 177 |
178 'src/third_party/bidichecker': | 178 'src/third_party/bidichecker': |
179 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 179 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
180 | 180 |
181 'src/third_party/webgl/src': | 181 'src/third_party/webgl/src': |
182 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8bae
a808f3bc9fcef945d66b5f740c32b', | 182 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8bae
a808f3bc9fcef945d66b5f740c32b', |
183 | 183 |
184 'src/third_party/webdriver/pylib': | 184 'src/third_party/webdriver/pylib': |
185 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 185 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
186 | 186 |
187 'src/third_party/libvpx_new/source/libvpx': | 187 'src/third_party/libvpx/source/libvpx': |
188 Var('chromium_git') + '/webm/libvpx.git' + '@' + '89cc68252846478fa7f2d570d9
6ff93776cefac6', | 188 Var('chromium_git') + '/webm/libvpx.git' + '@' + '89cc68252846478fa7f2d570d9
6ff93776cefac6', |
189 | 189 |
190 'src/third_party/ffmpeg': | 190 'src/third_party/ffmpeg': |
191 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '60fc535386f
97c6a0078738ba13ba3c4ef94ae01', | 191 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '60fc535386f
97c6a0078738ba13ba3c4ef94ae01', |
192 | 192 |
193 'src/third_party/libjingle/source/talk': | 193 'src/third_party/libjingle/source/talk': |
194 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'a4cc90bc9bf
b5cc932075aebccb734e38932b107', # commit position 11754 | 194 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'a4cc90bc9bf
b5cc932075aebccb734e38932b107', # commit position 11754 |
195 | 195 |
196 'src/third_party/usrsctp/usrsctplib': | 196 'src/third_party/usrsctp/usrsctplib': |
197 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', | 197 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8
b35c3fe6027d7a3faae89d1c8d7dd3ce98', |
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 'src/tools', | 841 'src/tools', |
842 ], | 842 ], |
843 }, | 843 }, |
844 { | 844 { |
845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 845 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
846 'name': 'gyp', | 846 'name': 'gyp', |
847 'pattern': '.', | 847 'pattern': '.', |
848 'action': ['python', 'src/build/gyp_chromium'], | 848 'action': ['python', 'src/build/gyp_chromium'], |
849 }, | 849 }, |
850 ] | 850 ] |
OLD | NEW |