Jamie Madill | 4237e53 | 2019-06-28 11:14:31 -0400 | [diff] [blame] | 1 | # This file is used to manage the dependencies of the ANGLE git repo. It is |
| 2 | # used by gclient to determine what version of each dependency to check out, and |
| 3 | # where. |
| 4 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 5 | # Avoids the need for a custom root variable. |
| 6 | use_relative_paths = True |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 7 | |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 8 | gclient_gn_args_file = 'build/config/gclient_args.gni' |
Jonah Ryan-Davis | 84eb7d8 | 2020-07-27 16:27:36 -0400 | [diff] [blame] | 9 | gclient_gn_args = [ |
| 10 | 'mac_xcode_version', |
| 11 | ] |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 12 | |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 13 | vars = { |
Jonah Ryan-Davis | 84eb7d8 | 2020-07-27 16:27:36 -0400 | [diff] [blame] | 14 | # This can be overridden, e.g. with custom_vars, to download a nonstandard |
| 15 | # Xcode version in build/mac_toolchain.py instead of downloading the |
| 16 | # prebuilt pinned revision. |
| 17 | 'mac_xcode_version': 'default', |
| 18 | |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 19 | 'android_git': 'https://android.googlesource.com', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 20 | 'chromium_git': 'https://chromium.googlesource.com', |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 21 | 'chrome_internal_git': 'https://chrome-internal.googlesource.com', |
Jamie Madill | 8be7a4c | 2019-09-19 12:48:31 -0400 | [diff] [blame] | 22 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 23 | |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 24 | # This variable is overrided in Chromium's DEPS file. |
| 25 | 'build_with_chromium': False, |
| 26 | |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 27 | # Only check out public sources by default. This can be overridden with custom_vars. |
Cody Northrop | 84f45f1 | 2019-12-18 14:34:29 -0700 | [diff] [blame] | 28 | 'checkout_angle_internal': False, |
Jamie Madill | 4237e53 | 2019-06-28 11:14:31 -0400 | [diff] [blame] | 29 | |
Jamie Madill | 1948af3 | 2019-10-11 17:49:24 -0400 | [diff] [blame] | 30 | # Version of Chromium our Chromium-based DEPS are mirrored from. |
Yuly Novikov | 23335ac | 2020-08-10 22:27:41 -0400 | [diff] [blame] | 31 | 'chromium_revision': 'c8c2c646295cebc116b8b8f3f4cdfa48821f22fb', |
Yuly Novikov | 6a652f1 | 2020-08-12 21:12:47 -0400 | [diff] [blame] | 32 | # We never want to checkout chromium, |
| 33 | # but need a dummy DEPS entry for the autoroller |
| 34 | 'dummy_checkout_chromium': False, |
Jamie Madill | 1948af3 | 2019-10-11 17:49:24 -0400 | [diff] [blame] | 35 | |
Courtney Goeltzenleuchter | febdcf5 | 2019-10-28 10:54:03 -0600 | [diff] [blame] | 36 | # Current revision of VK-GL-CTS (a.k.a dEQP). |
angle-autoroll | 5c8c6b4 | 2020-08-13 15:45:04 +0000 | [diff] [blame] | 37 | 'vk_gl_cts_revision': 'fb86cfb19849570ccc6b4dc5aa0fe0e35432d442', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 38 | |
| 39 | # Current revision of glslang, the Khronos SPIRV compiler. |
angle-autoroll | a14f1c8 | 2020-08-18 07:01:03 +0000 | [diff] [blame] | 40 | 'glslang_revision': 'f257e0ea6b9aeab2dc7af3207ac6d29d2bbc01d0', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 41 | |
Jamie Madill | 0703568 | 2019-10-25 09:00:41 -0400 | [diff] [blame] | 42 | # Current revision of googletest. |
| 43 | # Note: this dep cannot be auto-rolled b/c of nesting. |
| 44 | 'googletest_revision': 'f2fb48c3b3d79a75a88a99fba6576b25d42ec528', |
| 45 | |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 46 | # Current revision of jsoncpp. |
| 47 | # Note: this dep cannot be auto-rolled b/c of nesting. |
| 48 | 'jsoncpp_revision': '645250b6690785be60ab6780ce4b58698d884d11', |
| 49 | |
Jordan Bayles | 1265dbe | 2020-06-24 15:12:17 -0700 | [diff] [blame] | 50 | # Current revision of Chrome's third_party jsoncpp directory. This repository |
| 51 | # is mirrored as a separate repository, with separate git hashes that |
| 52 | # don't match the external JsonCpp repository or Chrome. Mirrored patches |
| 53 | # will have a different git hash associated with them. |
| 54 | # To roll, first get the new hash for chromium_jsoncpp_revision from the |
| 55 | # mirror of third_party/jsoncpp located here: |
| 56 | # https://chromium.googlesource.com/chromium/src/third_party/jsoncpp/ |
| 57 | # Then get the new hash for jsoncpp_revision from the root Chrome DEPS file: |
| 58 | # https://source.chromium.org/chromium/chromium/src/+/master:DEPS |
| 59 | 'chromium_jsoncpp_revision': 'ec647b85b61f525a1a74e4da7477b0c5371c50f4', |
| 60 | |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 61 | # Current revision of patched-yasm. |
| 62 | # Note: this dep cannot be auto-rolled b/c of nesting. |
| 63 | 'patched_yasm_revision': '720b70524a4424b15fc57e82263568c8ba0496ad', |
| 64 | |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 65 | # Current revision of spirv-cross, the Khronos SPIRV cross compiler. |
Le Hoang Quyen | bcf9957 | 2020-05-11 00:50:00 +0800 | [diff] [blame] | 66 | 'spirv_cross_revision': 'f38cbeb814c73510b85697adbe5e894f9eac978f', |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 67 | |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 68 | # Current revision fo the SPIRV-Headers Vulkan support library. |
angle-autoroll | d57f043 | 2020-08-11 07:01:30 +0000 | [diff] [blame] | 69 | 'spirv_headers_revision': '3fdabd0da2932c276b25b9b4a988ba134eba1aa6', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 70 | |
| 71 | # Current revision of SPIRV-Tools for Vulkan. |
angle-autoroll | 9e17cab | 2020-08-19 07:01:53 +0000 | [diff] [blame] | 72 | 'spirv_tools_revision': '3434cb0b006d973b18f5abcdbf3ff17488c6a825', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 73 | |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 74 | # Current revision of Khronos Vulkan-Headers. |
angle-autoroll | 0d421b6 | 2020-08-18 07:01:50 +0000 | [diff] [blame] | 75 | 'vulkan_headers_revision': '834673eaa34a04669eedea764e88d881338243a2', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 76 | |
| 77 | # Current revision of Khronos Vulkan-Loader. |
angle-autoroll | 4bf2e25 | 2020-08-18 07:01:09 +0000 | [diff] [blame] | 78 | 'vulkan_loader_revision': '30b3f3857835cadb16d4f893de35caf313cf6947', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 79 | |
| 80 | # Current revision of Khronos Vulkan-Tools. |
angle-autoroll | b4f0374 | 2020-08-10 07:01:25 +0000 | [diff] [blame] | 81 | 'vulkan_tools_revision': '1590d46aaaeb133d2b0d7ea406c8a78bef2ebd4b', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 82 | |
| 83 | # Current revision of Khronos Vulkan-ValidationLayers. |
angle-autoroll | e16e2cf | 2020-08-19 07:01:36 +0000 | [diff] [blame^] | 84 | 'vulkan_validation_revision': 'c97acd1d3e07757d0269e59f7610670169728c5f', |
Geoff Lang | 6e687af | 2019-10-17 14:36:41 -0400 | [diff] [blame] | 85 | |
| 86 | # Three lines of non-changing comments so that |
| 87 | # the commit queue can handle CLs rolling catapult |
| 88 | # and whatever else without interference from each other. |
| 89 | 'catapult_revision': '1b3fb455bf1849f1e6187e1eaeaef32b9f30d3c5', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 90 | } |
| 91 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 92 | deps = { |
alokp@chromium.org | 416fcd3 | 2012-04-11 16:23:44 +0000 | [diff] [blame] | 93 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 94 | 'build': { |
Yuly Novikov | 23335ac | 2020-08-10 22:27:41 -0400 | [diff] [blame] | 95 | 'url': '{chromium_git}/chromium/src/build.git@113076662015f18c72ca5cb5b03517fdf2e7d2a6', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 96 | 'condition': 'not build_with_chromium', |
| 97 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 98 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 99 | 'buildtools': { |
Yuly Novikov | 23335ac | 2020-08-10 22:27:41 -0400 | [diff] [blame] | 100 | 'url': '{chromium_git}/chromium/src/buildtools.git@b00ad0af636401e5eb4b5d0ab01b65164dca1914', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 101 | 'condition': 'not build_with_chromium', |
| 102 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 103 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 104 | 'testing': { |
Yuly Novikov | 23335ac | 2020-08-10 22:27:41 -0400 | [diff] [blame] | 105 | 'url': '{chromium_git}/chromium/src/testing@e227df9cd519af4dcd720c3fb8341060408fdbf4', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 106 | 'condition': 'not build_with_chromium', |
| 107 | }, |
alokp@chromium.org | 5cd9c60 | 2012-05-16 23:37:50 +0000 | [diff] [blame] | 108 | |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 109 | 'third_party/android_ndk': { |
| 110 | 'url': '{chromium_git}/android_ndk.git@27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87', |
| 111 | 'condition': 'checkout_android and not build_with_chromium', |
| 112 | }, |
| 113 | |
| 114 | 'third_party/catapult': { |
| 115 | 'url': '{chromium_git}/catapult.git@{catapult_revision}', |
| 116 | 'condition': 'checkout_android and not build_with_chromium', |
| 117 | }, |
| 118 | |
Courtney Goeltzenleuchter | febdcf5 | 2019-10-28 10:54:03 -0600 | [diff] [blame] | 119 | # Cherry is a dEQP/VK-GL-CTS management GUI written in Go. We use it for viewing test results. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 120 | 'third_party/cherry': { |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 121 | 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc', |
| 122 | 'condition': 'not build_with_chromium', |
| 123 | }, |
Jamie Madill | 9e76f56 | 2015-10-02 08:57:14 -0400 | [diff] [blame] | 124 | |
Yuly Novikov | 6a652f1 | 2020-08-12 21:12:47 -0400 | [diff] [blame] | 125 | # We never want to checkout chromium, |
| 126 | # but need a dummy DEPS entry for the autoroller |
| 127 | 'third_party/dummy_chromium': { |
| 128 | 'url': '{chromium_git}/chromium/src.git@{chromium_revision}', |
| 129 | 'condition': 'dummy_checkout_chromium', |
| 130 | }, |
| 131 | |
Jamie Madill | 20e631f | 2020-05-05 12:19:58 -0400 | [diff] [blame] | 132 | 'third_party/vulkan_memory_allocator': { |
Jamie Madill | b22ecc6 | 2020-06-04 10:51:10 -0400 | [diff] [blame] | 133 | 'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@431d6e57284aeb08118ff428dfbd51c94342faa1', |
Jamie Madill | ca50ad4 | 2020-05-01 16:37:00 -0400 | [diff] [blame] | 134 | 'condition': 'not build_with_chromium', |
Jamie Madill | 76d52be | 2020-04-07 09:14:29 -0400 | [diff] [blame] | 135 | }, |
| 136 | |
Courtney Goeltzenleuchter | febdcf5 | 2019-10-28 10:54:03 -0600 | [diff] [blame] | 137 | 'third_party/VK-GL-CTS/src': { |
| 138 | 'url': '{chromium_git}/external/github.com/KhronosGroup/VK-GL-CTS@{vk_gl_cts_revision}', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 139 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 140 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 141 | 'third_party/fuchsia-sdk': { |
Jamie Madill | 130fdbc | 2019-10-10 19:13:07 -0400 | [diff] [blame] | 142 | 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 143 | 'condition': 'checkout_fuchsia and not build_with_chromium', |
| 144 | }, |
| 145 | |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 146 | # Closed-source OpenGL ES 1.1 Conformance tests. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 147 | 'third_party/gles1_conform': { |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 148 | 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e', |
Cody Northrop | 84f45f1 | 2019-12-18 14:34:29 -0700 | [diff] [blame] | 149 | 'condition': 'checkout_angle_internal', |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 150 | }, |
| 151 | |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 152 | # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 153 | 'third_party/glmark2/src': { |
Jamie Madill | 2971fd3 | 2019-08-12 16:53:21 -0400 | [diff] [blame] | 154 | 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 155 | }, |
| 156 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 157 | 'third_party/glslang/src': { |
Tobin Ehlis | 317a9eb | 2018-11-29 12:51:46 -0700 | [diff] [blame] | 158 | 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}', |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 159 | 'condition': 'not build_with_chromium', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 160 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 161 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 162 | 'third_party/googletest': { |
Tim Van Patten | fa10568 | 2020-08-04 22:43:43 -0600 | [diff] [blame] | 163 | 'url': '{chromium_git}/chromium/src/third_party/googletest@e3c3f879eee34ec81b1e562d8fecd207716d8945', |
Jamie Madill | cf9b285 | 2019-02-13 09:15:26 -0500 | [diff] [blame] | 164 | 'condition': 'not build_with_chromium', |
| 165 | }, |
| 166 | |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 167 | # libjpeg_turbo is used by glmark2. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 168 | 'third_party/libjpeg_turbo': { |
Tim Van Patten | fa10568 | 2020-08-04 22:43:43 -0600 | [diff] [blame] | 169 | 'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@0241a1304fd183ee24fbdfe6891f18fdedea38f9', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 170 | 'condition': 'not build_with_chromium', |
| 171 | }, |
| 172 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 173 | 'third_party/libpng/src': { |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 174 | 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c', |
| 175 | 'condition': 'not build_with_chromium', |
| 176 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 177 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 178 | 'third_party/jsoncpp': { |
Jordan Bayles | 1265dbe | 2020-06-24 15:12:17 -0700 | [diff] [blame] | 179 | 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@{chromium_jsoncpp_revision}', |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 180 | 'condition': 'not build_with_chromium', |
| 181 | }, |
Tobin Ehlis | 5fdc38c | 2018-08-28 09:20:57 -0600 | [diff] [blame] | 182 | |
Jamie Madill | 4395170 | 2020-04-27 16:57:46 -0400 | [diff] [blame] | 183 | 'third_party/nasm': { |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 184 | 'url': '{chromium_git}/chromium/deps/nasm.git@19f3fad68da99277b2882939d3b2fa4c4b8d51d9', |
Jamie Madill | 4395170 | 2020-04-27 16:57:46 -0400 | [diff] [blame] | 185 | 'condition': 'not build_with_chromium', |
| 186 | }, |
| 187 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 188 | 'third_party/Python-Markdown': { |
Tim Van Patten | fa10568 | 2020-08-04 22:43:43 -0600 | [diff] [blame] | 189 | 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@31ac00b010877151f9440d5ffc7f1437e74169ef', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 190 | 'condition': 'not build_with_chromium', |
| 191 | }, |
| 192 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 193 | 'third_party/qemu-linux-x64': { |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 194 | 'packages': [ |
| 195 | { |
| 196 | 'package': 'fuchsia/qemu/linux-amd64', |
| 197 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 198 | }, |
| 199 | ], |
| 200 | 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)', |
| 201 | 'dep_type': 'cipd', |
| 202 | }, |
| 203 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 204 | 'third_party/qemu-mac-x64': { |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 205 | 'packages': [ |
| 206 | { |
| 207 | 'package': 'fuchsia/qemu/mac-amd64', |
| 208 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 209 | }, |
| 210 | ], |
| 211 | 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)', |
| 212 | 'dep_type': 'cipd', |
| 213 | }, |
| 214 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 215 | 'third_party/rapidjson/src': { |
Jamie Madill | 46d32e0 | 2019-02-25 17:13:16 -0500 | [diff] [blame] | 216 | 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63', |
| 217 | }, |
| 218 | |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 219 | 'third_party/spirv-cross/src': { |
| 220 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Cross@{spirv_cross_revision}', |
| 221 | 'condition': 'not build_with_chromium', |
| 222 | }, |
| 223 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 224 | 'third_party/spirv-headers/src': { |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 225 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}', |
Corentin Wallez | a883dd0 | 2018-08-03 18:11:46 +0200 | [diff] [blame] | 226 | 'condition': 'not build_with_chromium', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 227 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 228 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 229 | 'third_party/spirv-tools/src': { |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 230 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}', |
Corentin Wallez | a883dd0 | 2018-08-03 18:11:46 +0200 | [diff] [blame] | 231 | 'condition': 'not build_with_chromium', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 232 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 233 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 234 | 'third_party/SwiftShader': { |
angle-autoroll | 95b2658 | 2020-08-18 07:01:12 +0000 | [diff] [blame] | 235 | 'url': '{swiftshader_git}/SwiftShader@6f74415e2f74b36784f4a8a08647db405473fbfc', |
Jamie Madill | 8be7a4c | 2019-09-19 12:48:31 -0400 | [diff] [blame] | 236 | 'condition': 'not build_with_chromium', |
| 237 | }, |
| 238 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 239 | 'third_party/vulkan-headers/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 240 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}', |
| 241 | }, |
| 242 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 243 | 'third_party/vulkan-loader/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 244 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}', |
| 245 | }, |
| 246 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 247 | 'third_party/vulkan-tools/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 248 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}', |
| 249 | }, |
| 250 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 251 | 'third_party/vulkan-validation-layers/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 252 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 253 | }, |
Jamie Madill | 3cd438d | 2015-03-17 11:25:27 -0400 | [diff] [blame] | 254 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 255 | 'third_party/zlib': { |
Tim Van Patten | fa10568 | 2020-08-04 22:43:43 -0600 | [diff] [blame] | 256 | 'url': '{chromium_git}/chromium/src/third_party/zlib@7492de9a52f656b070f41968e39a6efa603590d5', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 257 | 'condition': 'not build_with_chromium', |
| 258 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 259 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 260 | 'tools/clang': { |
Yuly Novikov | 23335ac | 2020-08-10 22:27:41 -0400 | [diff] [blame] | 261 | 'url': '{chromium_git}/chromium/src/tools/clang.git@faabb9a8ea407bb38928800b04a529971d228473', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 262 | 'condition': 'not build_with_chromium', |
| 263 | }, |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 264 | |
Le Hoang Quyen | caeb217 | 2019-11-20 22:30:17 +0800 | [diff] [blame] | 265 | 'tools/clang/dsymutil': { |
| 266 | 'packages': [ |
| 267 | { |
| 268 | 'package': 'chromium/llvm-build-tools/dsymutil', |
| 269 | 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
| 270 | } |
| 271 | ], |
| 272 | 'condition': 'checkout_mac and not build_with_chromium', |
| 273 | 'dep_type': 'cipd', |
| 274 | }, |
| 275 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 276 | 'tools/md_browser': { |
Tim Van Patten | fa10568 | 2020-08-04 22:43:43 -0600 | [diff] [blame] | 277 | 'url': '{chromium_git}/chromium/src/tools/md_browser@7e75775447051d4ecb6ab0ca597eda6d809a2963', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 278 | 'condition': 'not build_with_chromium', |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 279 | }, |
Jamie Madill | df0ce01 | 2019-09-05 11:04:39 -0400 | [diff] [blame] | 280 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 281 | 'tools/memory': { |
Jamie Madill | df0ce01 | 2019-09-05 11:04:39 -0400 | [diff] [blame] | 282 | 'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee', |
| 283 | 'condition': 'not build_with_chromium', |
| 284 | }, |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 285 | } |
| 286 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 287 | hooks = [ |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 288 | # Pull clang-format binaries using checked-in hashes. |
| 289 | { |
| 290 | 'name': 'clang_format_win', |
| 291 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 292 | 'condition': 'host_os == "win" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 293 | 'action': [ 'download_from_google_storage', |
| 294 | '--no_resume', |
| 295 | '--platform=win32', |
| 296 | '--no_auth', |
| 297 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 298 | '-s', 'buildtools/win/clang-format.exe.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 299 | ], |
| 300 | }, |
| 301 | { |
| 302 | 'name': 'clang_format_mac', |
| 303 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 304 | 'condition': 'host_os == "mac" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 305 | 'action': [ 'download_from_google_storage', |
| 306 | '--no_resume', |
| 307 | '--platform=darwin', |
| 308 | '--no_auth', |
| 309 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 310 | '-s', 'buildtools/mac/clang-format.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 311 | ], |
| 312 | }, |
| 313 | { |
| 314 | 'name': 'clang_format_linux', |
| 315 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 316 | 'condition': 'host_os == "linux" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 317 | 'action': [ 'download_from_google_storage', |
| 318 | '--no_resume', |
| 319 | '--platform=linux*', |
| 320 | '--no_auth', |
| 321 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 322 | '-s', 'buildtools/linux64/clang-format.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 323 | ], |
| 324 | }, |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 325 | { |
| 326 | 'name': 'sysroot_x86', |
| 327 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 328 | 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 329 | 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py', |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 330 | '--arch=x86'], |
| 331 | }, |
| 332 | { |
| 333 | 'name': 'sysroot_x64', |
| 334 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 335 | 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 336 | 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py', |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 337 | '--arch=x64'], |
| 338 | }, |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 339 | { |
| 340 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
| 341 | 'name': 'win_toolchain', |
| 342 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 343 | 'condition': 'checkout_win and not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 344 | 'action': ['python', 'build/vs_toolchain.py', 'update', '--force'], |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 345 | }, |
Geoff Lang | 66ae531 | 2019-04-01 16:35:53 -0400 | [diff] [blame] | 346 | { |
| 347 | # Update the Mac toolchain if necessary. |
| 348 | 'name': 'mac_toolchain', |
| 349 | 'pattern': '.', |
| 350 | 'condition': 'checkout_mac and not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 351 | 'action': ['python', 'build/mac_toolchain.py'], |
Geoff Lang | 66ae531 | 2019-04-01 16:35:53 -0400 | [diff] [blame] | 352 | }, |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 353 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 354 | { |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 355 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 356 | 'name': 'clang', |
| 357 | 'pattern': '.', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 358 | 'action': ['python', 'tools/clang/scripts/update.py'], |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 359 | 'condition': 'not build_with_chromium', |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 360 | }, |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 361 | |
Shahbaz Youssefi | 957e9b8 | 2018-10-05 11:00:50 -0400 | [diff] [blame] | 362 | { |
| 363 | # Update LASTCHANGE. |
| 364 | 'name': 'lastchange', |
| 365 | 'pattern': '.', |
| 366 | 'condition': 'not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 367 | 'action': ['python', 'build/util/lastchange.py', |
| 368 | '-o', 'build/util/LASTCHANGE'], |
Shahbaz Youssefi | 957e9b8 | 2018-10-05 11:00:50 -0400 | [diff] [blame] | 369 | }, |
| 370 | |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 371 | # Pull rc binaries using checked-in hashes. |
| 372 | { |
| 373 | 'name': 'rc_win', |
| 374 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 375 | 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)', |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 376 | 'action': [ 'download_from_google_storage', |
| 377 | '--no_resume', |
| 378 | '--no_auth', |
| 379 | '--bucket', 'chromium-browser-clang/rc', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 380 | '-s', 'build/toolchain/win/rc/win/rc.exe.sha1', |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 381 | ], |
| 382 | }, |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 383 | |
| 384 | { |
| 385 | 'name': 'fuchsia_sdk', |
| 386 | 'pattern': '.', |
| 387 | 'condition': 'checkout_fuchsia and not build_with_chromium', |
| 388 | 'action': [ |
| 389 | 'python', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 390 | 'build/fuchsia/update_sdk.py', |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 391 | ], |
| 392 | }, |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 393 | |
Shahbaz Youssefi | 82418c8 | 2019-04-05 15:56:03 -0400 | [diff] [blame] | 394 | # Download glslang validator binary for Linux. |
| 395 | { |
| 396 | 'name': 'linux_glslang_validator', |
| 397 | 'pattern': '.', |
| 398 | 'condition': 'checkout_linux and not build_with_chromium', |
| 399 | 'action': [ 'download_from_google_storage', |
| 400 | '--no_resume', |
| 401 | '--platform=linux*', |
| 402 | '--no_auth', |
| 403 | '--bucket', 'angle-glslang-validator', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 404 | '-s', 'tools/glslang/glslang_validator.sha1', |
Shahbaz Youssefi | 82418c8 | 2019-04-05 15:56:03 -0400 | [diff] [blame] | 405 | ], |
| 406 | }, |
| 407 | |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 408 | # Download glslang validator binary for Windows. |
| 409 | { |
| 410 | 'name': 'win_glslang_validator', |
| 411 | 'pattern': '.', |
| 412 | 'condition': 'checkout_win and not build_with_chromium', |
| 413 | 'action': [ 'download_from_google_storage', |
| 414 | '--no_resume', |
| 415 | '--platform=win32*', |
| 416 | '--no_auth', |
| 417 | '--bucket', 'angle-glslang-validator', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 418 | '-s', 'tools/glslang/glslang_validator.exe.sha1', |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 419 | ], |
| 420 | }, |
Shahbaz Youssefi | 5efb36b | 2019-11-25 16:14:55 -0500 | [diff] [blame] | 421 | |
| 422 | # Download flex/bison binaries for Linux. |
| 423 | { |
| 424 | 'name': 'linux_flex_bison', |
| 425 | 'pattern': '.', |
| 426 | 'condition': 'checkout_linux and not build_with_chromium', |
| 427 | 'action': [ 'download_from_google_storage', |
| 428 | '--no_resume', |
| 429 | '--platform=linux*', |
| 430 | '--no_auth', |
| 431 | '--bucket', 'angle-flex-bison', |
| 432 | '-d', 'tools/flex-bison/linux/', |
| 433 | ], |
| 434 | }, |
| 435 | |
| 436 | # Download flex/bison binaries for Windows. |
| 437 | { |
| 438 | 'name': 'win_flex_bison', |
| 439 | 'pattern': '.', |
| 440 | 'condition': 'checkout_win and not build_with_chromium', |
| 441 | 'action': [ 'download_from_google_storage', |
| 442 | '--no_resume', |
| 443 | '--platform=win32*', |
| 444 | '--no_auth', |
| 445 | '--bucket', 'angle-flex-bison', |
| 446 | '-d', 'tools/flex-bison/windows/', |
| 447 | ], |
| 448 | }, |
Cody Northrop | 080d711 | 2020-01-08 13:04:44 -0700 | [diff] [blame] | 449 | |
| 450 | # Download internal captures for perf tests |
| 451 | { |
| 452 | 'name': 'restricted_traces', |
| 453 | 'pattern': '\\.sha1', |
| 454 | 'condition': 'checkout_angle_internal', |
Courtney Goeltzenleuchter | e474cc9 | 2020-06-18 16:03:30 -0600 | [diff] [blame] | 455 | 'action': [ 'python', |
| 456 | 'src/tests/perf_tests/restricted_traces/download_restricted_traces.py', |
Jamie Madill | ee0498b | 2020-02-15 09:24:03 -0500 | [diff] [blame] | 457 | 'src/tests/perf_tests/restricted_traces', |
Cody Northrop | 080d711 | 2020-01-08 13:04:44 -0700 | [diff] [blame] | 458 | ] |
| 459 | } |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 460 | ] |
Jamie Madill | 2078931 | 2016-10-28 14:05:26 -0400 | [diff] [blame] | 461 | |
| 462 | recursedeps = [ |
| 463 | # buildtools provides clang_format. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 464 | 'buildtools', |
Jamie Madill | 0703568 | 2019-10-25 09:00:41 -0400 | [diff] [blame] | 465 | 'third_party/googletest', |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 466 | 'third_party/jsoncpp', |
Jamie Madill | 2078931 | 2016-10-28 14:05:26 -0400 | [diff] [blame] | 467 | ] |