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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 'src/chrome/test/data/perf/canvas_bench': | 173 'src/chrome/test/data/perf/canvas_bench': |
174 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 174 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
175 | 175 |
176 'src/chrome/test/data/perf/frame_rate/content': | 176 'src/chrome/test/data/perf/frame_rate/content': |
177 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 177 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
178 | 178 |
179 'src/third_party/bidichecker': | 179 'src/third_party/bidichecker': |
180 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 180 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
181 | 181 |
182 'src/third_party/webgl/src': | 182 'src/third_party/webgl/src': |
183 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8bae
a808f3bc9fcef945d66b5f740c32b', | 183 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '328c6be0377
4641fc6b6b96c815ce2d803bebab8', |
184 | 184 |
185 'src/third_party/webdriver/pylib': | 185 'src/third_party/webdriver/pylib': |
186 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 186 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
187 | 187 |
188 'src/third_party/libvpx/source/libvpx': | 188 'src/third_party/libvpx/source/libvpx': |
189 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'afd869308ef4283c5a2b5e530b
1f28cb9c596604', | 189 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'afd869308ef4283c5a2b5e530b
1f28cb9c596604', |
190 | 190 |
191 'src/third_party/ffmpeg': | 191 'src/third_party/ffmpeg': |
192 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', | 192 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'beef6851386
1e11156899b1f763097c31808c418', |
193 | 193 |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
839 'pattern': '\\.sha1', | 839 'pattern': '\\.sha1', |
840 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 840 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
841 }, | 841 }, |
842 { | 842 { |
843 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 843 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
844 'name': 'gyp', | 844 'name': 'gyp', |
845 'pattern': '.', | 845 'pattern': '.', |
846 'action': ['python', 'src/build/gyp_chromium'], | 846 'action': ['python', 'src/build/gyp_chromium'], |
847 }, | 847 }, |
848 ] | 848 ] |
OLD | NEW |