2015-07-20 17:14:54 +03:00
|
|
|
vars = {
|
2016-12-13 23:18:58 +03:00
|
|
|
'android_git': 'https://android.googlesource.com',
|
2015-07-20 17:14:54 +03:00
|
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
2018-04-13 22:51:24 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
# This variable is set on the Chrome infra for compatiblity with gclient.
|
|
|
|
'angle_root': '.',
|
|
|
|
|
2018-06-01 21:18:28 +03:00
|
|
|
# This variable is overrided in Chromium's DEPS file.
|
|
|
|
'build_with_chromium': False,
|
|
|
|
|
|
|
|
# Current revision of dEQP.
|
2019-05-13 16:44:40 +03:00
|
|
|
'deqp_revision': '39894bc13c69b22c4aea018979b7daabc8dfc602',
|
2018-06-01 21:18:28 +03:00
|
|
|
|
|
|
|
# Current revision of glslang, the Khronos SPIRV compiler.
|
2019-06-26 10:01:17 +03:00
|
|
|
'glslang_revision': '4162de4bbfc58ef37600c23e4e8fcf58e604f382',
|
2018-06-01 21:18:28 +03:00
|
|
|
|
|
|
|
# Current revision fo the SPIRV-Headers Vulkan support library.
|
2019-06-18 17:10:42 +03:00
|
|
|
'spirv_headers_revision': 'de99d4d834aeb51dd9f099baa285bd44fd04bb3d',
|
2018-06-01 21:18:28 +03:00
|
|
|
|
|
|
|
# Current revision of SPIRV-Tools for Vulkan.
|
2019-06-27 10:01:40 +03:00
|
|
|
'spirv_tools_revision': '6ccb52b86492f8e27383abb821c8a808625c78ed',
|
2018-06-01 21:18:28 +03:00
|
|
|
|
2018-05-24 19:56:17 +03:00
|
|
|
# Current revision of Khronos Vulkan-Headers.
|
2019-03-27 21:21:20 +03:00
|
|
|
'vulkan_headers_revision': '982f0f84dccf6f281b48318c77261a9028000126',
|
2018-05-24 19:56:17 +03:00
|
|
|
|
|
|
|
# Current revision of Khronos Vulkan-Loader.
|
2019-03-27 21:21:20 +03:00
|
|
|
'vulkan_loader_revision': '2f0abfcf9eb04018e6e92125a70bc28665aa17fe',
|
2018-05-24 19:56:17 +03:00
|
|
|
|
|
|
|
# Current revision of Khronos Vulkan-Tools.
|
2019-03-27 21:21:20 +03:00
|
|
|
'vulkan_tools_revision': 'f392e71b994036c92b896c2a62cc63d042b7f9b1',
|
2018-05-24 19:56:17 +03:00
|
|
|
|
|
|
|
# Current revision of Khronos Vulkan-ValidationLayers.
|
2019-03-27 21:21:20 +03:00
|
|
|
'vulkan_validation_revision': 'ff80a937c8a505abbdddb95d8ffaa446820c8391',
|
2015-07-20 17:14:54 +03:00
|
|
|
}
|
|
|
|
|
2010-04-06 19:42:22 +04:00
|
|
|
deps = {
|
2012-04-11 20:23:44 +04:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/build': {
|
2019-04-10 20:58:08 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/build.git@54ea0e7fd122348de2f73ac21d1b6eafb9b78969',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/buildtools': {
|
2019-04-10 20:58:08 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/buildtools.git@d5c58b84d50d256968271db459cd29b22bff1ba2',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/testing': {
|
2019-04-10 20:58:08 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/testing@32e614b7ec7b2b741351c1b8470aaf30c2f532fa',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2012-05-17 03:37:50 +04:00
|
|
|
|
2015-10-02 15:57:14 +03:00
|
|
|
# Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/cherry': {
|
2018-06-01 21:18:28 +03:00
|
|
|
'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2015-10-02 15:57:14 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/deqp/src': {
|
2019-01-29 02:15:43 +03:00
|
|
|
'url': '{chromium_git}/external/deqp@{deqp_revision}',
|
2018-06-01 21:18:28 +03:00
|
|
|
},
|
2016-12-13 23:18:58 +03:00
|
|
|
|
2019-04-08 16:40:40 +03:00
|
|
|
'{angle_root}/third_party/fuchsia-sdk': {
|
|
|
|
'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@8e8db13b538ecb251e5ce9d5c781fc142f9752fd',
|
|
|
|
'condition': 'checkout_fuchsia and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-03-05 18:07:41 +03:00
|
|
|
# glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
|
|
|
|
'{angle_root}/third_party/glmark2/src': {
|
|
|
|
'url': '{chromium_git}/external/github.com/glmark2/glmark2@c4b3ff5a481348e8bdc2b71ee275864db91e40b1',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/glslang/src': {
|
2018-11-29 22:51:46 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
|
2019-01-28 17:55:20 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2019-03-05 18:07:41 +03:00
|
|
|
},
|
2016-12-13 23:18:58 +03:00
|
|
|
|
2019-02-13 17:15:26 +03:00
|
|
|
'{angle_root}/third_party/googletest': {
|
2019-04-10 20:58:08 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/googletest@d5024103c8a8977156ee800eb1c84d92dffe9fdf',
|
2019-02-13 17:15:26 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/googletest/src': {
|
2019-05-07 01:34:38 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/google/googletest.git@3f5b5b8f8493a03fa25f1e4a7eae7678514a431d',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-10-11 20:28:22 +03:00
|
|
|
|
2019-03-05 18:07:41 +03:00
|
|
|
# libjpeg_turbo is used by glmark2.
|
|
|
|
'{angle_root}/third_party/libjpeg_turbo': {
|
|
|
|
'url': '{chromium_git}/chromium/deps/libjpeg_turbo@6dcdade8828297e306cabfdae80f3510f3f3eea2',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/libpng/src': {
|
2018-06-01 21:18:28 +03:00
|
|
|
'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2015-03-17 18:25:27 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/jsoncpp': {
|
2018-09-06 17:58:26 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/jsoncpp@fd0ac8ce63a47e99b71a58f1489136fbb19c9137',
|
2019-01-28 17:55:20 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2018-09-06 17:58:26 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/jsoncpp/source': {
|
2019-01-28 17:55:20 +03:00
|
|
|
'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp@f572e8e42e22cfcf5ab0aea26574f408943edfa4',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2018-08-28 18:20:57 +03:00
|
|
|
|
2019-04-08 16:40:40 +03:00
|
|
|
'{angle_root}/third_party/Python-Markdown': {
|
|
|
|
'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@b08af21eb795e522e1b972cb85bff59edb1ae209',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-01-22 02:09:15 +03:00
|
|
|
'{angle_root}/third_party/qemu-linux-x64': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'fuchsia/qemu/linux-amd64',
|
|
|
|
'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'{angle_root}/third_party/qemu-mac-x64': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'fuchsia/qemu/mac-amd64',
|
|
|
|
'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
2019-02-26 01:13:16 +03:00
|
|
|
|
|
|
|
'{angle_root}/third_party/rapidjson/src': {
|
|
|
|
'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/spirv-headers/src': {
|
2019-01-28 17:55:20 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
|
2018-08-03 19:11:46 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2018-06-01 21:18:28 +03:00
|
|
|
},
|
2015-07-20 17:14:54 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/spirv-tools/src': {
|
2019-01-28 17:55:20 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
|
2018-08-03 19:11:46 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2018-06-01 21:18:28 +03:00
|
|
|
},
|
2016-12-13 23:18:58 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/vulkan-headers/src': {
|
2018-05-24 19:56:17 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/vulkan-loader/src': {
|
2018-05-24 19:56:17 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/vulkan-tools/src': {
|
2018-05-24 19:56:17 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/vulkan-validation-layers/src': {
|
2018-05-24 19:56:17 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
|
2018-06-01 21:18:28 +03:00
|
|
|
},
|
2016-12-13 23:18:58 +03:00
|
|
|
|
2019-03-05 18:07:41 +03:00
|
|
|
'{angle_root}/third_party/yasm': {
|
|
|
|
'url': '{chromium_git}/chromium/src/third_party/yasm@86b6058141a42aed51bbd8bb9f9d54d199d9dbd0',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'{angle_root}/third_party/yasm/source/patched-yasm': {
|
|
|
|
'url': '{chromium_git}/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/third_party/zlib': {
|
2018-12-17 22:04:10 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/zlib@f95aeb0fa7f136ef4a457a6d9ba6f3c2701a444b',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/tools/clang': {
|
2019-04-10 20:58:08 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/clang.git@210f1dc3ebf8504ae246d925e9110ec427eef43f',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
2019-04-08 16:40:40 +03:00
|
|
|
'{angle_root}/tools/md_browser': {
|
|
|
|
'url': '{chromium_git}/chromium/src/tools/md_browser@e9462696241f3ca832890473173e03e7bcfe6adc',
|
|
|
|
'condition': 'not build_with_chromium',
|
2019-01-22 02:09:15 +03:00
|
|
|
},
|
2010-04-06 19:42:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
hooks = [
|
2015-07-20 17:14:54 +03:00
|
|
|
# Pull clang-format binaries using checked-in hashes.
|
|
|
|
{
|
|
|
|
'name': 'clang_format_win',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "win" and not build_with_chromium',
|
2015-07-20 17:14:54 +03:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--platform=win32',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2018-09-12 20:36:57 +03:00
|
|
|
'-s', '{angle_root}/buildtools/win/clang-format.exe.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'clang_format_mac',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "mac" and not build_with_chromium',
|
2015-07-20 17:14:54 +03:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--platform=darwin',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2018-09-12 20:36:57 +03:00
|
|
|
'-s', '{angle_root}/buildtools/mac/clang-format.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'clang_format_linux',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "linux" and not build_with_chromium',
|
2015-07-20 17:14:54 +03:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--platform=linux*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2018-09-12 20:36:57 +03:00
|
|
|
'-s', '{angle_root}/buildtools/linux64/clang-format.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
2018-05-22 01:22:22 +03:00
|
|
|
{
|
|
|
|
'name': 'sysroot_x86',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
|
2018-09-12 20:36:57 +03:00
|
|
|
'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
|
2018-05-22 01:22:22 +03:00
|
|
|
'--arch=x86'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'sysroot_x64',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
|
2018-09-12 20:36:57 +03:00
|
|
|
'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
|
2018-05-22 01:22:22 +03:00
|
|
|
'--arch=x64'],
|
|
|
|
},
|
2018-04-13 22:51:24 +03:00
|
|
|
{
|
|
|
|
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
|
|
|
'name': 'win_toolchain',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
2018-09-12 20:36:57 +03:00
|
|
|
'action': ['python', '{angle_root}/build/vs_toolchain.py', 'update', '--force'],
|
2018-04-13 22:51:24 +03:00
|
|
|
},
|
2019-04-01 23:35:53 +03:00
|
|
|
{
|
|
|
|
# Update the Mac toolchain if necessary.
|
|
|
|
'name': 'mac_toolchain',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_mac and not build_with_chromium',
|
|
|
|
'action': ['python', '{angle_root}/build/mac_toolchain.py'],
|
|
|
|
},
|
2018-04-13 22:51:24 +03:00
|
|
|
|
2017-08-29 05:53:24 +03:00
|
|
|
{
|
|
|
|
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
|
|
'name': 'clang',
|
|
|
|
'pattern': '.',
|
2018-09-12 20:36:57 +03:00
|
|
|
'action': ['python', '{angle_root}/tools/clang/scripts/update.py'],
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2017-08-29 05:53:24 +03:00
|
|
|
},
|
2017-10-24 06:25:17 +03:00
|
|
|
|
2018-10-05 18:00:50 +03:00
|
|
|
{
|
|
|
|
# Update LASTCHANGE.
|
|
|
|
'name': 'lastchange',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
'action': ['python', '{angle_root}/build/util/lastchange.py',
|
|
|
|
'-o', '{angle_root}/build/util/LASTCHANGE'],
|
|
|
|
},
|
|
|
|
|
2017-10-24 06:25:17 +03:00
|
|
|
# Pull rc binaries using checked-in hashes.
|
|
|
|
{
|
|
|
|
'name': 'rc_win',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
|
2017-10-24 06:25:17 +03:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
2018-09-12 20:36:57 +03:00
|
|
|
'-s', '{angle_root}/build/toolchain/win/rc/win/rc.exe.sha1',
|
2017-10-24 06:25:17 +03:00
|
|
|
],
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'fuchsia_sdk',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_fuchsia and not build_with_chromium',
|
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'{angle_root}/build/fuchsia/update_sdk.py',
|
|
|
|
],
|
|
|
|
},
|
2019-04-08 16:25:23 +03:00
|
|
|
|
2019-04-05 22:56:03 +03:00
|
|
|
# Download glslang validator binary for Linux.
|
|
|
|
{
|
|
|
|
'name': 'linux_glslang_validator',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_linux and not build_with_chromium',
|
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--platform=linux*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-glslang-validator',
|
|
|
|
'-s', '{angle_root}/tools/glslang/glslang_validator.sha1',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2019-04-08 16:25:23 +03:00
|
|
|
# Download glslang validator binary for Windows.
|
|
|
|
{
|
|
|
|
'name': 'win_glslang_validator',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
'--no_resume',
|
|
|
|
'--platform=win32*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-glslang-validator',
|
|
|
|
'-s', '{angle_root}/tools/glslang/glslang_validator.exe.sha1',
|
|
|
|
],
|
|
|
|
},
|
2010-04-06 19:42:22 +04:00
|
|
|
]
|
2016-10-28 21:05:26 +03:00
|
|
|
|
|
|
|
recursedeps = [
|
|
|
|
# buildtools provides clang_format.
|
2018-09-12 20:36:57 +03:00
|
|
|
'{angle_root}/buildtools',
|
2016-10-28 21:05:26 +03:00
|
|
|
]
|