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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', | 387 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', |
388 | 388 |
389 'src/third_party/xdg-utils': | 389 'src/third_party/xdg-utils': |
390 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 390 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
391 | 391 |
392 'src/third_party/lss': | 392 'src/third_party/lss': |
393 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 393 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
394 | 394 |
395 # For Linux and Chromium OS. | 395 # For Linux and Chromium OS. |
396 'src/third_party/cros_system_api': | 396 'src/third_party/cros_system_api': |
397 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '789778
e45b321a9d96d1814f60605cb7cc9db212', | 397 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'f2d7a9
a97171f25419ff4294b1dba41302981fa2', |
398 | 398 |
399 # Note that this is different from Android's freetype repo. | 399 # Note that this is different from Android's freetype repo. |
400 'src/third_party/freetype2/src': | 400 'src/third_party/freetype2/src': |
401 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', | 401 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', |
402 | 402 |
403 # Build tools for Chrome OS. | 403 # Build tools for Chrome OS. |
404 'src/third_party/chromite': | 404 'src/third_party/chromite': |
405 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'bf808553f8da8a477
bce5d5bb80a8af8939e6e73', | 405 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'bf808553f8da8a477
bce5d5bb80a8af8939e6e73', |
406 | 406 |
407 # Dependency of chromite.git. | 407 # Dependency of chromite.git. |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 # corresponding .py files have already been deleted. | 757 # corresponding .py files have already been deleted. |
758 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
759 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
760 'action': [ | 760 'action': [ |
761 'python', | 761 'python', |
762 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
763 'src/tools', | 763 'src/tools', |
764 ], | 764 ], |
765 }, | 765 }, |
766 ] | 766 ] |
OLD | NEW |