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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 'src/third_party/ffmpeg': | 189 'src/third_party/ffmpeg': |
190 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '4b95e276f38
91020fd3560c973dcc70dd50403c6', | 190 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '4b95e276f38
91020fd3560c973dcc70dd50403c6', |
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' + '@' + '3ecea8a7f85
6b250a0c86d26f7a7d0f284ca5afb', # commit position 10671 | 193 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '3ecea8a7f85
6b250a0c86d26f7a7d0f284ca5afb', # commit position 10671 |
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' + '@' + '502e81a238a864cfc
e774d4de3893810629bf227', # from svn revision 295151 | 199 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'b8dd754b4fa05fd4c
f1c2e8dc3b1ac976280e41a', # from svn revision 295151 |
200 | 200 |
201 'src/third_party/yasm/source/patched-yasm': | 201 'src/third_party/yasm/source/patched-yasm': |
202 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', | 202 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', |
203 | 203 |
204 'src/third_party/libjpeg_turbo': | 204 'src/third_party/libjpeg_turbo': |
205 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29
745f1546b6ebf5cf532e841c04c2c', | 205 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29
745f1546b6ebf5cf532e841c04c2c', |
206 | 206 |
207 'src/third_party/flac': | 207 'src/third_party/flac': |
208 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '2c4b86af352b23498315
c016dc207e3fb2733fc0', | 208 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '2c4b86af352b23498315
c016dc207e3fb2733fc0', |
209 | 209 |
(...skipping 600 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 |