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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 998 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
999 ], | 999 ], |
1000 }, | 1000 }, |
1001 # Pull the Syzygy binaries, used for optimization and instrumentation. | 1001 # Pull the Syzygy binaries, used for optimization and instrumentation. |
1002 { | 1002 { |
1003 'name': 'syzygy-binaries', | 1003 'name': 'syzygy-binaries', |
1004 'pattern': '.', | 1004 'pattern': '.', |
1005 'action': ['python', | 1005 'action': ['python', |
1006 'src/build/get_syzygy_binaries.py', | 1006 'src/build/get_syzygy_binaries.py', |
1007 '--output-dir=src/third_party/syzygy/binaries', | 1007 '--output-dir=src/third_party/syzygy/binaries', |
1008 '--revision=2a23ba1e864c7eef238c458212959d696cd4f1ac', | 1008 '--revision=37f2efe2518802e568d2b620309c0c4a939e52f1', |
1009 '--overwrite', | 1009 '--overwrite', |
1010 '--copy-dia-binaries', | 1010 '--copy-dia-binaries', |
1011 ], | 1011 ], |
1012 }, | 1012 }, |
1013 # TODO(pmonette): Move include files out of binaries folder. | 1013 # TODO(pmonette): Move include files out of binaries folder. |
1014 { | 1014 { |
1015 'name': 'kasko', | 1015 'name': 'kasko', |
1016 'pattern': '.', | 1016 'pattern': '.', |
1017 'action': ['python', | 1017 'action': ['python', |
1018 'src/build/get_syzygy_binaries.py', | 1018 'src/build/get_syzygy_binaries.py', |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 ] | 1104 ] |
1105 | 1105 |
1106 recursedeps = [ | 1106 recursedeps = [ |
1107 # buildtools provides clang_format, libc++, and libc++abi | 1107 # buildtools provides clang_format, libc++, and libc++abi |
1108 'src/buildtools', | 1108 'src/buildtools', |
1109 # android_tools manages the NDK. | 1109 # android_tools manages the NDK. |
1110 'src/third_party/android_tools', | 1110 'src/third_party/android_tools', |
1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1112 ("src/third_party/angle", "DEPS.chromium"), | 1112 ("src/third_party/angle", "DEPS.chromium"), |
1113 ] | 1113 ] |
OLD | NEW |