| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'src/third_party/ffmpeg': | 190 'src/third_party/ffmpeg': |
| 191 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '501a5c5db44
7ec2b0903551c011dfcbf6c5cd22f', | 191 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '501a5c5db44
7ec2b0903551c011dfcbf6c5cd22f', |
| 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' + '@' + 'ad335bcacce
7e5c7e685dbeddcb486616c169a15', # commit position 11475 | 194 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'ad335bcacce
7e5c7e685dbeddcb486616c169a15', # commit position 11475 |
| 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', |
| 198 | 198 |
| 199 'src/third_party/libsrtp': | 199 'src/third_party/libsrtp': |
| 200 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '9cc4f2f799887e5d6
4bd28c159ea34b413f6be31', # from svn revision 295151 | 200 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '8eecac0feef4c65e2
debb42718a10eab91551f35', # from svn revision 295151 |
| 201 | 201 |
| 202 'src/third_party/yasm/source/patched-yasm': | 202 'src/third_party/yasm/source/patched-yasm': |
| 203 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', | 203 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120
cd8558ce62ee8672ebf3eb6f5216f909b', |
| 204 | 204 |
| 205 'src/third_party/libjpeg_turbo': | 205 'src/third_party/libjpeg_turbo': |
| 206 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29
745f1546b6ebf5cf532e841c04c2c', | 206 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29
745f1546b6ebf5cf532e841c04c2c', |
| 207 | 207 |
| 208 'src/third_party/flac': | 208 'src/third_party/flac': |
| 209 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '2c4b86af352b23498315
c016dc207e3fb2733fc0', | 209 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '2c4b86af352b23498315
c016dc207e3fb2733fc0', |
| 210 | 210 |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 'src/tools', | 829 'src/tools', |
| 830 ], | 830 ], |
| 831 }, | 831 }, |
| 832 { | 832 { |
| 833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 834 'name': 'gyp', | 834 'name': 'gyp', |
| 835 'pattern': '.', | 835 'pattern': '.', |
| 836 'action': ['python', 'src/build/gyp_chromium'], | 836 'action': ['python', 'src/build/gyp_chromium'], |
| 837 }, | 837 }, |
| 838 ] | 838 ] |
| OLD | NEW |