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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 }, | 755 }, |
756 { | 756 { |
757 # Update LASTCHANGE.blink. | 757 # Update LASTCHANGE.blink. |
758 'name': 'lastchange_blink', | 758 'name': 'lastchange_blink', |
759 'pattern': '.', | 759 'pattern': '.', |
760 'action': ['python', 'src/build/util/lastchange.py', | 760 'action': ['python', 'src/build/util/lastchange.py', |
761 '--git-hash-only', | 761 '--git-hash-only', |
762 '-s', 'src/third_party/WebKit', | 762 '-s', 'src/third_party/WebKit', |
763 '-o', 'src/build/util/LASTCHANGE.blink'], | 763 '-o', 'src/build/util/LASTCHANGE.blink'], |
764 }, | 764 }, |
| 765 { |
| 766 # Update skia_commit_hash.h. |
| 767 'name': 'lastchange_skia', |
| 768 'pattern': '.', |
| 769 'action': ['python', 'src/build/util/lastchange.py', |
| 770 '-m', 'SKIA_COMMIT_HASH', |
| 771 '-s', 'src/third_party/skia', |
| 772 '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 773 }, |
765 # Pull GN binaries. This needs to be before running GYP below. | 774 # Pull GN binaries. This needs to be before running GYP below. |
766 { | 775 { |
767 'name': 'gn_win', | 776 'name': 'gn_win', |
768 'pattern': '.', | 777 'pattern': '.', |
769 'action': [ 'download_from_google_storage', | 778 'action': [ 'download_from_google_storage', |
770 '--no_resume', | 779 '--no_resume', |
771 '--platform=win32', | 780 '--platform=win32', |
772 '--no_auth', | 781 '--no_auth', |
773 '--bucket', 'chromium-gn', | 782 '--bucket', 'chromium-gn', |
774 '-s', 'src/buildtools/win/gn.exe.sha1', | 783 '-s', 'src/buildtools/win/gn.exe.sha1', |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 { | 976 { |
968 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 977 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
969 'name': 'gyp', | 978 'name': 'gyp', |
970 'pattern': '.', | 979 'pattern': '.', |
971 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 980 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
972 }, | 981 }, |
973 ] | 982 ] |
974 | 983 |
975 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 984 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
976 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 985 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |