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