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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 'src/chrome/test/data/perf/canvas_bench': | 177 'src/chrome/test/data/perf/canvas_bench': |
178 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 178 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
179 | 179 |
180 'src/chrome/test/data/perf/frame_rate/content': | 180 'src/chrome/test/data/perf/frame_rate/content': |
181 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 181 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
182 | 182 |
183 'src/third_party/bidichecker': | 183 'src/third_party/bidichecker': |
184 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 184 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
185 | 185 |
186 'src/third_party/webgl/src': | 186 'src/third_party/webgl/src': |
187 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '863cabbe534
47cd4e131ee5bf1979bfe9dcf3016', | 187 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '8b636f38a19
fa416217ae9882cf8e199f22e44d5', |
188 | 188 |
189 'src/third_party/webdriver/pylib': | 189 'src/third_party/webdriver/pylib': |
190 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 190 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
191 | 191 |
192 'src/third_party/libvpx/source/libvpx': | 192 'src/third_party/libvpx/source/libvpx': |
193 Var('chromium_git') + '/webm/libvpx.git' + '@' + '904cb53302dfebee4a0d795ad6
ccebdd5da5f542', | 193 Var('chromium_git') + '/webm/libvpx.git' + '@' + '904cb53302dfebee4a0d795ad6
ccebdd5da5f542', |
194 | 194 |
195 'src/third_party/ffmpeg': | 195 'src/third_party/ffmpeg': |
196 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', | 196 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', |
197 | 197 |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 'pattern': '\\.sha1', | 853 'pattern': '\\.sha1', |
854 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 854 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
855 }, | 855 }, |
856 { | 856 { |
857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
858 'name': 'gyp', | 858 'name': 'gyp', |
859 'pattern': '.', | 859 'pattern': '.', |
860 'action': ['python', 'src/build/gyp_chromium'], | 860 'action': ['python', 'src/build/gyp_chromium'], |
861 }, | 861 }, |
862 ] | 862 ] |
OLD | NEW |