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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 # For Linux and Chromium OS. | 421 # For Linux and Chromium OS. |
422 'src/third_party/cros_system_api': | 422 'src/third_party/cros_system_api': |
423 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'eb5b6c
3152ddf0b8212cc35d384c231e20aaeb62', | 423 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'eb5b6c
3152ddf0b8212cc35d384c231e20aaeb62', |
424 | 424 |
425 # Note that this is different from Android's freetype repo. | 425 # Note that this is different from Android's freetype repo. |
426 'src/third_party/freetype2/src': | 426 'src/third_party/freetype2/src': |
427 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 427 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', |
428 | 428 |
429 # Build tools for Chrome OS. | 429 # Build tools for Chrome OS. |
430 'src/third_party/chromite': | 430 'src/third_party/chromite': |
431 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '07ec2254dde79f386
15fbe8ff89a1fecc4233a96', | 431 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'ebfaba48b76d45a9f
8462510d5379ba877ceb847', |
432 | 432 |
433 # Dependency of chromite.git. | 433 # Dependency of chromite.git. |
434 'src/third_party/pyelftools': | 434 'src/third_party/pyelftools': |
435 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 435 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
436 | 436 |
437 'src/third_party/undoview': | 437 'src/third_party/undoview': |
438 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', | 438 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', |
439 | 439 |
440 'src/third_party/liblouis/src': | 440 'src/third_party/liblouis/src': |
441 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 441 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
(...skipping 340 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 |