| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 'src/chrome/test/data/perf/canvas_bench': | 172 'src/chrome/test/data/perf/canvas_bench': |
| 173 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 173 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
| 174 | 174 |
| 175 'src/chrome/test/data/perf/frame_rate/content': | 175 'src/chrome/test/data/perf/frame_rate/content': |
| 176 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 176 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
| 177 | 177 |
| 178 'src/third_party/bidichecker': | 178 'src/third_party/bidichecker': |
| 179 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 179 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
| 180 | 180 |
| 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' + '@' + '580ea2e50aa
26d0ee44643bea68be827d6303967', |
| 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' + '@' + 'e6e47f51421
6bbcdbfe796eb1f398c9afece93c8', | 191 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'e6e47f51421
6bbcdbfe796eb1f398c9afece93c8', |
| 192 | 192 |
| (...skipping 636 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 |