| 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' + '@' + '8673e8623e0
739a507ce0f98d8b0be7311437ebd', | 181 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '8673e8623e0
739a507ce0f98d8b0be7311437ebd', |
| 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' + '@' + 'f962bcb6a8a
ed397bb2d418527a4e4a23f5ab955', | 190 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'ddfb37c83df
5385cb1ef0bcdb94449d69b96b9d5', |
| 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' + '@' + '67e7a761483
e48f720a388b886b0354225858700', # commit position 10833 | 193 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '67e7a761483
e48f720a388b886b0354225858700', # commit position 10833 |
| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 }, | 814 }, |
| 815 { | 815 { |
| 816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 817 'name': 'gyp', | 817 'name': 'gyp', |
| 818 'pattern': '.', | 818 'pattern': '.', |
| 819 'action': ['python', 'src/build/gyp_chromium'], | 819 'action': ['python', 'src/build/gyp_chromium'], |
| 820 }, | 820 }, |
| 821 ] | 821 ] |
| 822 | 822 |
| 823 | 823 |
| OLD | NEW |