| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', | 368 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', |
| 369 | 369 |
| 370 'src/third_party/xdg-utils': | 370 'src/third_party/xdg-utils': |
| 371 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 371 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| 372 | 372 |
| 373 'src/third_party/lss': | 373 'src/third_party/lss': |
| 374 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 374 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 375 | 375 |
| 376 # For Linux and Chromium OS. | 376 # For Linux and Chromium OS. |
| 377 'src/third_party/cros_system_api': | 377 'src/third_party/cros_system_api': |
| 378 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '3b9501
26eee9cb1c55ab36c2dd5a89bfb05b5034', | 378 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'ba08c2
1a075ab091ca9bdc783435c2aec8c6f807', |
| 379 | 379 |
| 380 # Note that this is different from Android's freetype repo. | 380 # Note that this is different from Android's freetype repo. |
| 381 'src/third_party/freetype2/src': | 381 'src/third_party/freetype2/src': |
| 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', | 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', |
| 383 | 383 |
| 384 # Build tools for Chrome OS. | 384 # Build tools for Chrome OS. |
| 385 'src/third_party/chromite': | 385 'src/third_party/chromite': |
| 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '8a83c625c57a1ad99
0ba8f5f95890b57d204501f', | 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '8a83c625c57a1ad99
0ba8f5f95890b57d204501f', |
| 387 | 387 |
| 388 # Dependency of chromite.git. | 388 # Dependency of chromite.git. |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 # corresponding .py files have already been deleted. | 769 # corresponding .py files have already been deleted. |
| 770 'name': 'remove_stale_pyc_files', | 770 'name': 'remove_stale_pyc_files', |
| 771 'pattern': 'src/tools/.*\\.py', | 771 'pattern': 'src/tools/.*\\.py', |
| 772 'action': [ | 772 'action': [ |
| 773 'python', | 773 'python', |
| 774 'src/tools/remove_stale_pyc_files.py', | 774 'src/tools/remove_stale_pyc_files.py', |
| 775 'src/tools', | 775 'src/tools', |
| 776 ], | 776 ], |
| 777 }, | 777 }, |
| 778 ] | 778 ] |
| OLD | NEW |