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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 831 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
832 }, | 832 }, |
833 { | 833 { |
834 # Update LASTCHANGE. | 834 # Update LASTCHANGE. |
835 'name': 'lastchange', | 835 'name': 'lastchange', |
836 'pattern': '.', | 836 'pattern': '.', |
837 'action': ['python', 'src/build/util/lastchange.py', | 837 'action': ['python', 'src/build/util/lastchange.py', |
838 '-o', 'src/build/util/LASTCHANGE'], | 838 '-o', 'src/build/util/LASTCHANGE'], |
839 }, | 839 }, |
840 { | 840 { |
841 # Update LASTCHANGE.blink. | |
842 'name': 'lastchange_blink', | |
843 'pattern': '.', | |
844 'action': ['python', 'src/build/util/lastchange.py', | |
845 '--git-hash-only', | |
846 '-s', 'src/third_party/WebKit', | |
847 '-o', 'src/build/util/LASTCHANGE.blink'], | |
848 }, | |
849 { | |
850 # Update skia_commit_hash.h. | 841 # Update skia_commit_hash.h. |
851 'name': 'lastchange_skia', | 842 'name': 'lastchange_skia', |
852 'pattern': '.', | 843 'pattern': '.', |
853 'action': ['python', 'src/build/util/lastchange.py', | 844 'action': ['python', 'src/build/util/lastchange.py', |
854 '-m', 'SKIA_COMMIT_HASH', | 845 '-m', 'SKIA_COMMIT_HASH', |
855 '-s', 'src/third_party/skia', | 846 '-s', 'src/third_party/skia', |
856 '--header', 'src/skia/ext/skia_commit_hash.h'], | 847 '--header', 'src/skia/ext/skia_commit_hash.h'], |
857 }, | 848 }, |
858 # Pull GN binaries. This needs to be before running GYP below. | 849 # Pull GN binaries. This needs to be before running GYP below. |
859 { | 850 { |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1154 recursedeps = [ | 1145 recursedeps = [ |
1155 # buildtools provides clang_format, libc++, and libc++abi | 1146 # buildtools provides clang_format, libc++, and libc++abi |
1156 'src/buildtools', | 1147 'src/buildtools', |
1157 # android_tools manages the NDK. | 1148 # android_tools manages the NDK. |
1158 'src/third_party/android_tools', | 1149 'src/third_party/android_tools', |
1159 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1150 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1160 ("src/third_party/angle", "DEPS.chromium"), | 1151 ("src/third_party/angle", "DEPS.chromium"), |
1161 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1152 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
1162 ("src/third_party/swiftshader", "DEPS"), | 1153 ("src/third_party/swiftshader", "DEPS"), |
1163 ] | 1154 ] |
OLD | NEW |