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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 | 407 |
408 'src/third_party/lss': | 408 'src/third_party/lss': |
409 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 409 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
410 | 410 |
411 # For Linux and Chromium OS. | 411 # For Linux and Chromium OS. |
412 'src/third_party/cros_system_api': | 412 'src/third_party/cros_system_api': |
413 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '42cdfa
ada2ae9183f6479531e24d739cc778c4a8', | 413 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '42cdfa
ada2ae9183f6479531e24d739cc778c4a8', |
414 | 414 |
415 # Note that this is different from Android's freetype repo. | 415 # Note that this is different from Android's freetype repo. |
416 'src/third_party/freetype2/src': | 416 'src/third_party/freetype2/src': |
417 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '49
5a23fce9cd125f715dc20643d14fed226d76ac', | 417 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '1d
d5f5f4a909866f15c92a45c9702bce290a0151', |
418 | 418 |
419 # Build tools for Chrome OS. | 419 # Build tools for Chrome OS. |
420 'src/third_party/chromite': | 420 'src/third_party/chromite': |
421 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', | 421 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'fdc9440cb96f8de35
202abc285ffb896e04292d3', |
422 | 422 |
423 # Dependency of chromite.git. | 423 # Dependency of chromite.git. |
424 'src/third_party/pyelftools': | 424 'src/third_party/pyelftools': |
425 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 425 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
426 | 426 |
427 'src/third_party/undoview': | 427 'src/third_party/undoview': |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 # corresponding .py files have already been deleted. | 784 # corresponding .py files have already been deleted. |
785 'name': 'remove_stale_pyc_files', | 785 'name': 'remove_stale_pyc_files', |
786 'pattern': 'src/tools/.*\\.py', | 786 'pattern': 'src/tools/.*\\.py', |
787 'action': [ | 787 'action': [ |
788 'python', | 788 'python', |
789 'src/tools/remove_stale_pyc_files.py', | 789 'src/tools/remove_stale_pyc_files.py', |
790 'src/tools', | 790 'src/tools', |
791 ], | 791 ], |
792 }, | 792 }, |
793 ] | 793 ] |
OLD | NEW |