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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
918 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 918 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
919 ], | 919 ], |
920 }, | 920 }, |
921 # Pull the Syzygy binaries, used for optimization and instrumentation. | 921 # Pull the Syzygy binaries, used for optimization and instrumentation. |
922 { | 922 { |
923 'name': 'syzygy-binaries', | 923 'name': 'syzygy-binaries', |
924 'pattern': '.', | 924 'pattern': '.', |
925 'action': ['python', | 925 'action': ['python', |
926 'src/build/get_syzygy_binaries.py', | 926 'src/build/get_syzygy_binaries.py', |
927 '--output-dir=src/third_party/syzygy/binaries', | 927 '--output-dir=src/third_party/syzygy/binaries', |
928 '--revision=ba2ce2c31c16fe53b337121ec480fc5d4dfb4eec', | 928 '--revision=734ae20be0862a6e1667f45d4fd4ceb2c430b2f6', |
929 '--overwrite', | 929 '--overwrite', |
930 ], | 930 ], |
931 }, | 931 }, |
932 # TODO(pmonette): Move include files out of binaries folder. | 932 # TODO(pmonette): Move include files out of binaries folder. |
933 { | 933 { |
934 'name': 'kasko', | 934 'name': 'kasko', |
935 'pattern': '.', | 935 'pattern': '.', |
936 'action': ['python', | 936 'action': ['python', |
937 'src/build/get_syzygy_binaries.py', | 937 'src/build/get_syzygy_binaries.py', |
938 '--output-dir=src/third_party/kasko/binaries', | 938 '--output-dir=src/third_party/kasko/binaries', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1006 ], | 1006 ], |
1007 }, | 1007 }, |
1008 ] | 1008 ] |
1009 | 1009 |
1010 recursedeps = [ | 1010 recursedeps = [ |
1011 # android_tools manages the NDK. | 1011 # android_tools manages the NDK. |
1012 'src/third_party/android_tools', | 1012 'src/third_party/android_tools', |
1013 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1013 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1014 ("src/third_party/angle", "DEPS.chromium"), | 1014 ("src/third_party/angle", "DEPS.chromium"), |
1015 ] | 1015 ] |
OLD | NEW |