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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'src/chrome/test/data/perf/canvas_bench': | 179 'src/chrome/test/data/perf/canvas_bench': |
180 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae023951
7d78845a5fc9b12976bfc732', | 180 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae023951
7d78845a5fc9b12976bfc732', |
181 | 181 |
182 'src/chrome/test/data/perf/frame_rate/content': | 182 'src/chrome/test/data/perf/frame_rate/content': |
183 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c884
63efeef6bb19c9ec07c42bc8fe22b9', | 183 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c884
63efeef6bb19c9ec07c42bc8fe22b9', |
184 | 184 |
185 'src/third_party/bidichecker': | 185 'src/third_party/bidichecker': |
186 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 186 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
187 | 187 |
188 'src/third_party/webgl/src': | 188 'src/third_party/webgl/src': |
189 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'b973c091b0
bf7021b53f0635a553ee79011195ec', | 189 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'fa214eaac7
64601810e6fbdb9cd78dc6ccead0a2', |
190 | 190 |
191 'src/third_party/webdriver/pylib': | 191 'src/third_party/webdriver/pylib': |
192 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 192 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
193 | 193 |
194 'src/third_party/libvpx/source/libvpx': | 194 'src/third_party/libvpx/source/libvpx': |
195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '9a032fa2628ee55ec557d2c03
fb09ead796eea3d', | 195 Var('chromium_git') + '/webm/libvpx.git' + '@' + '9a032fa2628ee55ec557d2c03
fb09ead796eea3d', |
196 | 196 |
197 'src/third_party/ffmpeg': | 197 'src/third_party/ffmpeg': |
198 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '3c7a098821
02bfd6fecdb9d7296f43a8501db95e', | 198 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '3c7a098821
02bfd6fecdb9d7296f43a8501db95e', |
199 | 199 |
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 ] | 1019 ] |
1020 | 1020 |
1021 recursedeps = [ | 1021 recursedeps = [ |
1022 # buildtools provides clang_format, libc++, and libc++abi | 1022 # buildtools provides clang_format, libc++, and libc++abi |
1023 'src/buildtools', | 1023 'src/buildtools', |
1024 # android_tools manages the NDK. | 1024 # android_tools manages the NDK. |
1025 'src/third_party/android_tools', | 1025 'src/third_party/android_tools', |
1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1027 ("src/third_party/angle", "DEPS.chromium"), | 1027 ("src/third_party/angle", "DEPS.chromium"), |
1028 ] | 1028 ] |
OLD | NEW |