| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', | 942 '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
| 943 ], | 943 ], |
| 944 }, | 944 }, |
| 945 # Pull the Syzygy binaries, used for optimization and instrumentation. | 945 # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 946 { | 946 { |
| 947 'name': 'syzygy-binaries', | 947 'name': 'syzygy-binaries', |
| 948 'pattern': '.', | 948 'pattern': '.', |
| 949 'action': ['python', | 949 'action': ['python', |
| 950 'src/build/get_syzygy_binaries.py', | 950 'src/build/get_syzygy_binaries.py', |
| 951 '--output-dir=src/third_party/syzygy/binaries', | 951 '--output-dir=src/third_party/syzygy/binaries', |
| 952 '--revision=da2c31c5634ec66236ab5851a53c4497e2212bfc', | 952 '--revision=eb38b59577062c496435c346d7595dc609326a0a', |
| 953 '--overwrite', | 953 '--overwrite', |
| 954 ], | 954 ], |
| 955 }, | 955 }, |
| 956 # TODO(pmonette): Move include files out of binaries folder. | 956 # TODO(pmonette): Move include files out of binaries folder. |
| 957 { | 957 { |
| 958 'name': 'kasko', | 958 'name': 'kasko', |
| 959 'pattern': '.', | 959 'pattern': '.', |
| 960 'action': ['python', | 960 'action': ['python', |
| 961 'src/build/get_syzygy_binaries.py', | 961 'src/build/get_syzygy_binaries.py', |
| 962 '--output-dir=src/third_party/kasko/binaries', | 962 '--output-dir=src/third_party/kasko/binaries', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 'name': 'doclava', | 1004 'name': 'doclava', |
| 1005 'pattern': '.', | 1005 'pattern': '.', |
| 1006 'action': ['python', | 1006 'action': ['python', |
| 1007 'src/build/android/download_doclava.py', | 1007 'src/build/android/download_doclava.py', |
| 1008 ], | 1008 ], |
| 1009 }, | 1009 }, |
| 1010 ] | 1010 ] |
| 1011 | 1011 |
| 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |