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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 }, | 923 }, |
924 # Pull the Syzygy binaries, used for optimization and instrumentation. | 924 # Pull the Syzygy binaries, used for optimization and instrumentation. |
925 { | 925 { |
926 'name': 'syzygy-binaries', | 926 'name': 'syzygy-binaries', |
927 'pattern': '.', | 927 'pattern': '.', |
928 'action': ['python', | 928 'action': ['python', |
929 'src/build/get_syzygy_binaries.py', | 929 'src/build/get_syzygy_binaries.py', |
930 '--output-dir=src/third_party/syzygy/binaries', | 930 '--output-dir=src/third_party/syzygy/binaries', |
931 '--revision=ba2ce2c31c16fe53b337121ec480fc5d4dfb4eec', | 931 '--revision=ba2ce2c31c16fe53b337121ec480fc5d4dfb4eec', |
932 '--overwrite', | 932 '--overwrite', |
| 933 '--copy-dia-binaries', |
933 ], | 934 ], |
934 }, | 935 }, |
935 # TODO(pmonette): Move include files out of binaries folder. | 936 # TODO(pmonette): Move include files out of binaries folder. |
936 { | 937 { |
937 'name': 'kasko', | 938 'name': 'kasko', |
938 'pattern': '.', | 939 'pattern': '.', |
939 'action': ['python', | 940 'action': ['python', |
940 'src/build/get_syzygy_binaries.py', | 941 'src/build/get_syzygy_binaries.py', |
941 '--output-dir=src/third_party/kasko/binaries', | 942 '--output-dir=src/third_party/kasko/binaries', |
942 '--revision=266a18d9209be5ca5c5dcd0620942b82a2d238f3', | 943 '--revision=266a18d9209be5ca5c5dcd0620942b82a2d238f3', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 ], | 1017 ], |
1017 }, | 1018 }, |
1018 ] | 1019 ] |
1019 | 1020 |
1020 recursedeps = [ | 1021 recursedeps = [ |
1021 # android_tools manages the NDK. | 1022 # android_tools manages the NDK. |
1022 'src/third_party/android_tools', | 1023 'src/third_party/android_tools', |
1023 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1024 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1024 ("src/third_party/angle", "DEPS.chromium"), | 1025 ("src/third_party/angle", "DEPS.chromium"), |
1025 ] | 1026 ] |
OLD | NEW |