| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'src/third_party/webgl/src': | 181 'src/third_party/webgl/src': |
| 182 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '29258490ea9
02efba0cd3ef8200299b5c31d5d26', | 182 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '29258490ea9
02efba0cd3ef8200299b5c31d5d26', |
| 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_new/source/libvpx': |
| 188 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'f51dd8c2ac7dcdbc269918b0d0
fe30920f5641f7', | 188 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'f51dd8c2ac7dcdbc269918b0d0
fe30920f5641f7', |
| 189 | 189 |
| 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' + '@' + 'e6e47f51421
6bbcdbfe796eb1f398c9afece93c8', |
| 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' + '@' + 'd89324aa3d7
d705c3d8704dd6f57409920f2c647', # commit position 11498 | 194 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'd89324aa3d7
d705c3d8704dd6f57409920f2c647', # commit position 11498 |
| 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' + '@' + '9cc4f2f799887e5d6
4bd28c159ea34b413f6be31', # from svn revision 295151 |
| 201 | 201 |
| (...skipping 627 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 |