| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 # For Linux and Chromium OS. | 399 # For Linux and Chromium OS. |
| 400 'src/third_party/cros_system_api': | 400 'src/third_party/cros_system_api': |
| 401 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '789778
e45b321a9d96d1814f60605cb7cc9db212', | 401 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '789778
e45b321a9d96d1814f60605cb7cc9db212', |
| 402 | 402 |
| 403 # Note that this is different from Android's freetype repo. | 403 # Note that this is different from Android's freetype repo. |
| 404 'src/third_party/freetype2/src': | 404 'src/third_party/freetype2/src': |
| 405 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', | 405 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', |
| 406 | 406 |
| 407 # Build tools for Chrome OS. | 407 # Build tools for Chrome OS. |
| 408 'src/third_party/chromite': | 408 'src/third_party/chromite': |
| 409 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '7c430e16a7bb03040
576f012b424fab89974fdd4', | 409 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'bf808553f8da8a477
bce5d5bb80a8af8939e6e73', |
| 410 | 410 |
| 411 # Dependency of chromite.git. | 411 # Dependency of chromite.git. |
| 412 'src/third_party/pyelftools': | 412 'src/third_party/pyelftools': |
| 413 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + 'bdc
1d380acd88d4bfaf47265008091483b0d614e', | 413 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + 'bdc
1d380acd88d4bfaf47265008091483b0d614e', |
| 414 | 414 |
| 415 'src/third_party/undoview': | 415 'src/third_party/undoview': |
| 416 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', | 416 Var('chromium_git') + '/chromium/deps/undoview.git' + '@' + '3ba503e248f3cd
bd81b78325a24ece0984637559', |
| 417 | 417 |
| 418 'src/third_party/liblouis/src': | 418 'src/third_party/liblouis/src': |
| 419 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 419 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 # corresponding .py files have already been deleted. | 772 # corresponding .py files have already been deleted. |
| 773 'name': 'remove_stale_pyc_files', | 773 'name': 'remove_stale_pyc_files', |
| 774 'pattern': 'src/tools/.*\\.py', | 774 'pattern': 'src/tools/.*\\.py', |
| 775 'action': [ | 775 'action': [ |
| 776 'python', | 776 'python', |
| 777 'src/tools/remove_stale_pyc_files.py', | 777 'src/tools/remove_stale_pyc_files.py', |
| 778 'src/tools', | 778 'src/tools', |
| 779 ], | 779 ], |
| 780 }, | 780 }, |
| 781 ] | 781 ] |
| OLD | NEW |