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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 'src/third_party/webgl/src': | 180 'src/third_party/webgl/src': |
181 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'c8dd77f93df
19bd76de9ef727414dcd32b54cdee', | 181 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'c8dd77f93df
19bd76de9ef727414dcd32b54cdee', |
182 | 182 |
183 'src/third_party/webdriver/pylib': | 183 'src/third_party/webdriver/pylib': |
184 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 184 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
185 | 185 |
186 'src/third_party/libvpx_new/source/libvpx': | 186 'src/third_party/libvpx_new/source/libvpx': |
187 Var('chromium_git') + '/webm/libvpx.git' + '@' + '204cde580a5f6dd5e7511c932c
47c068046d9671', | 187 Var('chromium_git') + '/webm/libvpx.git' + '@' + '204cde580a5f6dd5e7511c932c
47c068046d9671', |
188 | 188 |
189 'src/third_party/ffmpeg': | 189 'src/third_party/ffmpeg': |
190 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'a3f3bd78577
a16bb5ec49c9d4f4ebd039efc9123', | 190 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f962bcb6a8a
ed397bb2d418527a4e4a23f5ab955', |
191 | 191 |
192 'src/third_party/libjingle/source/talk': | 192 'src/third_party/libjingle/source/talk': |
193 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '5a1f5b5548e
30780dcb5211bcdf8ce4f4a937838', # commit position 10776 | 193 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '5a1f5b5548e
30780dcb5211bcdf8ce4f4a937838', # commit position 10776 |
194 | 194 |
195 'src/third_party/usrsctp/usrsctplib': | 195 'src/third_party/usrsctp/usrsctplib': |
196 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 196 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
197 | 197 |
198 'src/third_party/libsrtp': | 198 'src/third_party/libsrtp': |
199 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'b8dd754b4fa05fd4c
f1c2e8dc3b1ac976280e41a', # from svn revision 295151 | 199 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'b8dd754b4fa05fd4c
f1c2e8dc3b1ac976280e41a', # from svn revision 295151 |
200 | 200 |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 }, | 810 }, |
811 { | 811 { |
812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
813 'name': 'gyp', | 813 'name': 'gyp', |
814 'pattern': '.', | 814 'pattern': '.', |
815 'action': ['python', 'src/build/gyp_chromium'], | 815 'action': ['python', 'src/build/gyp_chromium'], |
816 }, | 816 }, |
817 ] | 817 ] |
818 | 818 |
819 | 819 |
OLD | NEW |