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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'src/third_party/sfntly/cpp/src': | 183 'src/third_party/sfntly/cpp/src': |
184 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), | 184 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), |
185 | 185 |
186 'src/third_party/skia': | 186 'src/third_party/skia': |
187 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), | 187 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
188 | 188 |
189 'src/third_party/ots': | 189 'src/third_party/ots': |
190 Var('chromium_git') + '/external/ots.git' + '@' + '98897009f3ea8a5fa3e20a4a7
4977da7aaa8e61a', | 190 Var('chromium_git') + '/external/ots.git' + '@' + '98897009f3ea8a5fa3e20a4a7
4977da7aaa8e61a', |
191 | 191 |
192 'src/third_party/brotli/src': | 192 'src/third_party/brotli/src': |
193 Var('chromium_git') + '/external/font-compression-reference.git' + '@' + '65c
b3326e30ef8a67eb1d4411ec563e91be6e9ae', | 193 Var('chromium_git') + '/external/font-compression-reference.git' + '@' + '8c9
c83426beb4a58da34be76ea1fccb4054c4703', |
194 | 194 |
195 'src/tools/page_cycler/acid3': | 195 'src/tools/page_cycler/acid3': |
196 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5ab
c1b2f405a945f6d871521', | 196 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5ab
c1b2f405a945f6d871521', |
197 | 197 |
198 'src/chrome/test/data/perf/canvas_bench': | 198 'src/chrome/test/data/perf/canvas_bench': |
199 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 199 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
200 | 200 |
201 'src/chrome/test/data/perf/frame_rate/content': | 201 'src/chrome/test/data/perf/frame_rate/content': |
202 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', | 202 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c8846
3efeef6bb19c9ec07c42bc8fe22b9', |
203 | 203 |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # corresponding .py files have already been deleted. | 782 # corresponding .py files have already been deleted. |
783 'name': 'remove_stale_pyc_files', | 783 'name': 'remove_stale_pyc_files', |
784 'pattern': 'src/tools/.*\\.py', | 784 'pattern': 'src/tools/.*\\.py', |
785 'action': [ | 785 'action': [ |
786 'python', | 786 'python', |
787 'src/tools/remove_stale_pyc_files.py', | 787 'src/tools/remove_stale_pyc_files.py', |
788 'src/tools', | 788 'src/tools', |
789 ], | 789 ], |
790 }, | 790 }, |
791 ] | 791 ] |
OLD | NEW |