| 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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 997 'name': 'syzygy-binaries', | 997 'name': 'syzygy-binaries', |
| 998 'pattern': '.', | 998 'pattern': '.', |
| 999 'action': ['python', | 999 'action': ['python', |
| 1000 'src/build/get_syzygy_binaries.py', | 1000 'src/build/get_syzygy_binaries.py', |
| 1001 '--output-dir=src/third_party/syzygy/binaries', | 1001 '--output-dir=src/third_party/syzygy/binaries', |
| 1002 '--revision=37f2efe2518802e568d2b620309c0c4a939e52f1', | 1002 '--revision=37f2efe2518802e568d2b620309c0c4a939e52f1', |
| 1003 '--overwrite', | 1003 '--overwrite', |
| 1004 '--copy-dia-binaries', | 1004 '--copy-dia-binaries', |
| 1005 ], | 1005 ], |
| 1006 }, | 1006 }, |
| 1007 # TODO(pmonette): Move include files out of binaries folder. | |
| 1008 { | |
| 1009 'name': 'kasko', | |
| 1010 'pattern': '.', | |
| 1011 'action': ['python', | |
| 1012 'src/build/get_syzygy_binaries.py', | |
| 1013 '--output-dir=src/third_party/kasko/binaries', | |
| 1014 '--revision=266a18d9209be5ca5c5dcd0620942b82a2d238f3', | |
| 1015 '--resource=kasko.zip', | |
| 1016 '--resource=kasko_symbols.zip', | |
| 1017 '--overwrite', | |
| 1018 ], | |
| 1019 }, | |
| 1020 { | 1007 { |
| 1021 'name': 'apache_win32', | 1008 'name': 'apache_win32', |
| 1022 'pattern': '\\.sha1', | 1009 'pattern': '\\.sha1', |
| 1023 'action': [ 'download_from_google_storage', | 1010 'action': [ 'download_from_google_storage', |
| 1024 '--no_resume', | 1011 '--no_resume', |
| 1025 '--platform=win32', | 1012 '--platform=win32', |
| 1026 '--directory', | 1013 '--directory', |
| 1027 '--recursive', | 1014 '--recursive', |
| 1028 '--no_auth', | 1015 '--no_auth', |
| 1029 '--num_threads=16', | 1016 '--num_threads=16', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 ] | 1123 ] |
| 1137 | 1124 |
| 1138 recursedeps = [ | 1125 recursedeps = [ |
| 1139 # buildtools provides clang_format, libc++, and libc++abi | 1126 # buildtools provides clang_format, libc++, and libc++abi |
| 1140 'src/buildtools', | 1127 'src/buildtools', |
| 1141 # android_tools manages the NDK. | 1128 # android_tools manages the NDK. |
| 1142 'src/third_party/android_tools', | 1129 'src/third_party/android_tools', |
| 1143 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1130 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1144 ("src/third_party/angle", "DEPS.chromium"), | 1131 ("src/third_party/angle", "DEPS.chromium"), |
| 1145 ] | 1132 ] |
| OLD | NEW |