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 | 179 |
180 'src/native_client': | 180 'src/native_client': |
181 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 181 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
182 | 182 |
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': | |
190 Var('chromium_git') + '/external/ots.git' + '@' + '98897009f3ea8a5fa3e20a4a7
4977da7aaa8e61a', | |
191 | |
192 'src/third_party/brotli/src': | 189 'src/third_party/brotli/src': |
193 Var('chromium_git') + '/external/font-compression-reference.git' + '@' + '8c9
c83426beb4a58da34be76ea1fccb4054c4703', | 190 Var('chromium_git') + '/external/font-compression-reference.git' + '@' + '8c9
c83426beb4a58da34be76ea1fccb4054c4703', |
194 | 191 |
195 'src/tools/page_cycler/acid3': | 192 'src/tools/page_cycler/acid3': |
196 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5ab
c1b2f405a945f6d871521', | 193 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5ab
c1b2f405a945f6d871521', |
197 | 194 |
198 'src/chrome/test/data/perf/canvas_bench': | 195 'src/chrome/test/data/perf/canvas_bench': |
199 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', | 196 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517
d78845a5fc9b12976bfc732', |
200 | 197 |
201 'src/chrome/test/data/perf/frame_rate/content': | 198 'src/chrome/test/data/perf/frame_rate/content': |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 # corresponding .py files have already been deleted. | 782 # corresponding .py files have already been deleted. |
786 'name': 'remove_stale_pyc_files', | 783 'name': 'remove_stale_pyc_files', |
787 'pattern': 'src/tools/.*\\.py', | 784 'pattern': 'src/tools/.*\\.py', |
788 'action': [ | 785 'action': [ |
789 'python', | 786 'python', |
790 'src/tools/remove_stale_pyc_files.py', | 787 'src/tools/remove_stale_pyc_files.py', |
791 'src/tools', | 788 'src/tools', |
792 ], | 789 ], |
793 }, | 790 }, |
794 ] | 791 ] |
OLD | NEW |