| 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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 936 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
| 937 ], | 937 ], |
| 938 }, | 938 }, |
| 939 # Pull the Syzygy binaries, used for optimization and instrumentation. | 939 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 940 { | 940 { |
| 941 'name': 'syzygy-binaries', | 941 'name': 'syzygy-binaries', |
| 942 'pattern': '.', | 942 'pattern': '.', |
| 943 'action': ['python', | 943 'action': ['python', |
| 944 'src/build/get_syzygy_binaries.py', | 944 'src/build/get_syzygy_binaries.py', |
| 945 '--output-dir=src/third_party/syzygy/binaries', | 945 '--output-dir=src/third_party/syzygy/binaries', |
| 946 '--revision=eb38b59577062c496435c346d7595dc609326a0a', | 946 '--revision=5f06b860d3d0cf3079736c14f4bc1be47089edd4', |
| 947 '--overwrite', | 947 '--overwrite', |
| 948 ], | 948 ], |
| 949 }, | 949 }, |
| 950 # TODO(pmonette): Move include files out of binaries folder. | 950 # TODO(pmonette): Move include files out of binaries folder. |
| 951 { | 951 { |
| 952 'name': 'kasko', | 952 'name': 'kasko', |
| 953 'pattern': '.', | 953 'pattern': '.', |
| 954 'action': ['python', | 954 'action': ['python', |
| 955 'src/build/get_syzygy_binaries.py', | 955 'src/build/get_syzygy_binaries.py', |
| 956 '--output-dir=src/third_party/kasko/binaries', | 956 '--output-dir=src/third_party/kasko/binaries', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 "--no_auth", | 1020 "--no_auth", |
| 1021 "-u", | 1021 "-u", |
| 1022 "--bucket", "v8-wasm-asmjs-fuzzer", | 1022 "--bucket", "v8-wasm-asmjs-fuzzer", |
| 1023 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", | 1023 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", |
| 1024 ], | 1024 ], |
| 1025 }, | 1025 }, |
| 1026 ] | 1026 ] |
| 1027 | 1027 |
| 1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1029 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1029 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |