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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
574 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 574 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
575 }, | 575 }, |
576 { | 576 { |
577 # Pull clang if needed or requested via GYP_DEFINES. | 577 # Pull clang if needed or requested via GYP_DEFINES. |
578 # Note: On Win, this should run after win_toolchain, as it may use it. | 578 # Note: On Win, this should run after win_toolchain, as it may use it. |
579 'name': 'clang', | 579 'name': 'clang', |
580 'pattern': '.', | 580 'pattern': '.', |
581 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 581 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
582 }, | 582 }, |
583 { | 583 { |
584 # Update LASTCHANGE. This is also run by export_tarball.py in | 584 # Update LASTCHANGE. |
585 # src/tools/export_tarball - please keep them in sync. | |
586 'name': 'lastchange', | 585 'name': 'lastchange', |
587 'pattern': '.', | 586 'pattern': '.', |
588 'action': ['python', 'src/build/util/lastchange.py', | 587 'action': ['python', 'src/build/util/lastchange.py', |
589 '-o', 'src/build/util/LASTCHANGE'], | 588 '-o', 'src/build/util/LASTCHANGE'], |
590 }, | 589 }, |
591 { | 590 { |
592 # Update LASTCHANGE.blink. This is also run by export_tarball.py in | 591 # Update LASTCHANGE.blink. |
593 # src/tools/export_tarball - please keep them in sync. | |
pgervais
2015/04/24 18:31:13
I don't get it. export_tarball.py has been moved,
| |
594 'name': 'lastchange', | 592 'name': 'lastchange', |
595 'pattern': '.', | 593 'pattern': '.', |
596 'action': ['python', 'src/build/util/lastchange.py', | 594 'action': ['python', 'src/build/util/lastchange.py', |
597 '-s', 'src/third_party/WebKit', | 595 '-s', 'src/third_party/WebKit', |
598 '-o', 'src/build/util/LASTCHANGE.blink'], | 596 '-o', 'src/build/util/LASTCHANGE.blink'], |
599 }, | 597 }, |
600 # Pull GN binaries. This needs to be before running GYP below. | 598 # Pull GN binaries. This needs to be before running GYP below. |
601 { | 599 { |
602 'name': 'gn_win', | 600 'name': 'gn_win', |
603 'pattern': '.', | 601 'pattern': '.', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
786 # corresponding .py files have already been deleted. | 784 # corresponding .py files have already been deleted. |
787 'name': 'remove_stale_pyc_files', | 785 'name': 'remove_stale_pyc_files', |
788 'pattern': 'src/tools/.*\\.py', | 786 'pattern': 'src/tools/.*\\.py', |
789 'action': [ | 787 'action': [ |
790 'python', | 788 'python', |
791 'src/tools/remove_stale_pyc_files.py', | 789 'src/tools/remove_stale_pyc_files.py', |
792 'src/tools', | 790 'src/tools', |
793 ], | 791 ], |
794 }, | 792 }, |
795 ] | 793 ] |
OLD | NEW |