2018-07-31 16:50:03 +00:00
|
|
|
# Copyright 2018 The Dawn Authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-10-31 10:49:21 +00:00
|
|
|
import("//build_overrides/build.gni")
|
2019-11-07 12:13:27 +00:00
|
|
|
import("//build_overrides/vulkan_validation_layers.gni")
|
2019-05-22 17:18:52 +00:00
|
|
|
import("generator/dawn_generator.gni")
|
2019-03-06 23:17:39 +00:00
|
|
|
import("scripts/dawn_component.gni")
|
2019-02-13 18:42:38 +00:00
|
|
|
import("scripts/dawn_features.gni")
|
|
|
|
import("scripts/dawn_overrides_with_defaults.gni")
|
2018-12-08 10:35:53 +00:00
|
|
|
|
|
|
|
import("//testing/test.gni")
|
2018-07-31 16:50:03 +00:00
|
|
|
|
2019-11-26 18:21:51 +00:00
|
|
|
# Swiftshader is an optional dependency of Dawn so we only use it if the path
|
|
|
|
# to it has been set.
|
|
|
|
use_swiftshader = dawn_use_swiftshader && dawn_swiftshader_dir != ""
|
|
|
|
|
|
|
|
if (use_swiftshader) {
|
|
|
|
assert(dawn_enable_vulkan,
|
|
|
|
"dawn_use_swiftshader requires dawn_enable_vulkan=true")
|
|
|
|
import("${dawn_swiftshader_dir}/src/Vulkan/vulkan.gni")
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:54:51 +00:00
|
|
|
# Import mac_min_system_version
|
|
|
|
if (is_mac) {
|
|
|
|
import("//build/config/mac/mac_sdk.gni")
|
|
|
|
}
|
|
|
|
|
2019-08-13 19:00:34 +00:00
|
|
|
###############################################################################
|
|
|
|
# dawn_platform
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
source_set("dawn_platform") {
|
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"${dawn_root}/src/include/dawn_platform/DawnPlatform.h",
|
|
|
|
"src/dawn_platform/tracing/EventTracer.cpp",
|
|
|
|
"src/dawn_platform/tracing/EventTracer.h",
|
|
|
|
"src/dawn_platform/tracing/TraceEvent.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"${dawn_root}/src/common",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-07-31 16:50:03 +00:00
|
|
|
###############################################################################
|
2019-01-09 09:05:18 +00:00
|
|
|
# libdawn_native
|
2018-07-31 16:50:03 +00:00
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
config("libdawn_native_internal") {
|
2019-03-07 01:46:39 +00:00
|
|
|
configs = [ "${dawn_root}/src/common:dawn_internal" ]
|
2018-07-31 16:50:03 +00:00
|
|
|
|
2019-09-18 04:40:32 +00:00
|
|
|
# Suppress warnings that Metal isn't in the deployment target of Chrome:
|
|
|
|
# initialization of the Metal backend is behind a IsMetalSupported check so
|
|
|
|
# Dawn won't call Metal functions on macOS 10.10.
|
2019-12-11 16:54:51 +00:00
|
|
|
# At the time this is written Chromium supports 10.10.0 and above, so if we
|
|
|
|
# aren't on 10.11 it means we are on 10.11 and above, and Metal is available.
|
|
|
|
# Skipping this check on 10.11 and above is important as it allows getting
|
|
|
|
# proper compilation warning when using 10.12 and above feature for example.
|
2019-09-18 04:40:32 +00:00
|
|
|
# TODO(cwallez@chromium.org): Consider using API_AVAILABLE annotations on all
|
2019-12-11 16:54:51 +00:00
|
|
|
# metal code in dawn once crbug.com/1004024 is sorted out if Chromium still
|
|
|
|
# supports 10.10 then.
|
|
|
|
if (is_mac && mac_min_system_version == "10.10.0") {
|
2018-07-31 16:50:03 +00:00
|
|
|
cflags_objcc = [ "-Wno-unguarded-availability" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-21 11:35:49 +00:00
|
|
|
config("libdawn_native_weak_framework") {
|
|
|
|
if (is_mac && dawn_enable_metal) {
|
|
|
|
ldflags = [
|
|
|
|
"-weak_framework",
|
|
|
|
"Metal",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
dawn_json_generator("libdawn_native_utils_gen") {
|
2018-07-31 16:50:03 +00:00
|
|
|
target = "dawn_native_utils"
|
2018-08-16 13:32:35 +00:00
|
|
|
outputs = [
|
2019-09-18 04:33:12 +00:00
|
|
|
"src/dawn_native/ProcTable.cpp",
|
2019-10-23 11:57:41 +00:00
|
|
|
"src/dawn_native/wgpu_structs_autogen.h",
|
|
|
|
"src/dawn_native/wgpu_structs_autogen.cpp",
|
2019-09-18 04:33:12 +00:00
|
|
|
"src/dawn_native/ValidationUtils_autogen.h",
|
|
|
|
"src/dawn_native/ValidationUtils_autogen.cpp",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-06-13 10:22:32 +00:00
|
|
|
if (dawn_enable_opengl) {
|
|
|
|
dawn_generator("libdawn_native_opengl_loader_gen") {
|
|
|
|
script = "generator/opengl_loader_generator.py"
|
|
|
|
args = [
|
|
|
|
"--gl-xml",
|
2019-06-17 09:17:29 +00:00
|
|
|
rebase_path("third_party/khronos/gl.xml", root_build_dir),
|
2019-08-22 08:19:13 +00:00
|
|
|
"--supported-extensions",
|
|
|
|
rebase_path("src/dawn_native/opengl/supported_extensions.json",
|
|
|
|
root_build_dir),
|
2019-06-13 10:22:32 +00:00
|
|
|
]
|
|
|
|
outputs = [
|
2019-09-18 04:33:12 +00:00
|
|
|
"src/dawn_native/opengl/OpenGLFunctionsBase_autogen.cpp",
|
|
|
|
"src/dawn_native/opengl/OpenGLFunctionsBase_autogen.h",
|
|
|
|
"src/dawn_native/opengl/opengl_platform_autogen.h",
|
2019-06-13 10:22:32 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 19:07:46 +00:00
|
|
|
# Public libdawn_native headers so they can be publically visible for
|
|
|
|
# dependencies of libdawn_native
|
|
|
|
source_set("libdawn_native_headers") {
|
|
|
|
public_deps = [
|
2019-10-16 10:26:01 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp_headers",
|
2018-08-12 19:07:46 +00:00
|
|
|
]
|
2019-03-26 17:16:28 +00:00
|
|
|
all_dependent_configs = [ "${dawn_root}/src/common:dawn_public_include_dirs" ]
|
2018-08-12 19:07:46 +00:00
|
|
|
sources = [
|
|
|
|
"src/include/dawn_native/DawnNative.h",
|
|
|
|
"src/include/dawn_native/dawn_native_export.h",
|
|
|
|
|
|
|
|
# Include all backend's public headers so that dependencies can include
|
|
|
|
# them even when the backends are disabled.
|
|
|
|
"src/include/dawn_native/D3D12Backend.h",
|
|
|
|
"src/include/dawn_native/MetalBackend.h",
|
|
|
|
"src/include/dawn_native/NullBackend.h",
|
|
|
|
"src/include/dawn_native/OpenGLBackend.h",
|
|
|
|
"src/include/dawn_native/VulkanBackend.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-07-31 16:50:03 +00:00
|
|
|
# The meat of the compilation for libdawn_native so that we can cheaply have
|
2019-01-09 09:05:18 +00:00
|
|
|
# shared_library / static_library versions of it. It compiles all the files
|
|
|
|
# except those that define exported symbols.
|
2018-07-31 16:50:03 +00:00
|
|
|
source_set("libdawn_native_sources") {
|
|
|
|
deps = [
|
2019-01-09 09:05:18 +00:00
|
|
|
":libdawn_native_headers",
|
2018-08-16 13:32:35 +00:00
|
|
|
":libdawn_native_utils_gen",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-11-28 17:14:55 +00:00
|
|
|
"${dawn_shaderc_dir}:spirv_cross",
|
2018-09-06 15:25:46 +00:00
|
|
|
"${dawn_spirv_tools_dir}:spvtools_val",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
2019-11-21 18:08:15 +00:00
|
|
|
defines = []
|
2019-11-26 18:21:51 +00:00
|
|
|
libs = []
|
|
|
|
data_deps = []
|
2019-11-21 20:31:05 +00:00
|
|
|
|
2018-11-14 21:04:26 +00:00
|
|
|
configs += [ ":libdawn_native_internal" ]
|
2018-07-31 16:50:03 +00:00
|
|
|
|
2019-07-22 23:32:29 +00:00
|
|
|
# Dependencies that are needed to compile libdawn_native entry points in
|
|
|
|
# FooBackend.cpp need to be public deps so they are propagated to the
|
|
|
|
# libdawn_native target
|
2019-08-13 19:00:34 +00:00
|
|
|
public_deps = [
|
|
|
|
":dawn_platform",
|
2020-02-04 02:48:43 +00:00
|
|
|
"${dawn_shaderc_dir}:libshaderc_spvc",
|
2019-08-13 19:00:34 +00:00
|
|
|
]
|
2019-07-22 23:32:29 +00:00
|
|
|
|
2018-08-16 13:32:35 +00:00
|
|
|
sources = get_target_outputs(":libdawn_native_utils_gen")
|
|
|
|
sources += [
|
2019-01-04 10:30:40 +00:00
|
|
|
"src/dawn_native/Adapter.cpp",
|
|
|
|
"src/dawn_native/Adapter.h",
|
2019-07-26 19:08:18 +00:00
|
|
|
"src/dawn_native/AttachmentState.cpp",
|
|
|
|
"src/dawn_native/AttachmentState.h",
|
2019-01-04 10:30:40 +00:00
|
|
|
"src/dawn_native/BackendConnection.cpp",
|
|
|
|
"src/dawn_native/BackendConnection.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/BindGroup.cpp",
|
|
|
|
"src/dawn_native/BindGroup.h",
|
|
|
|
"src/dawn_native/BindGroupLayout.cpp",
|
|
|
|
"src/dawn_native/BindGroupLayout.h",
|
2019-09-17 19:25:27 +00:00
|
|
|
"src/dawn_native/BindGroupTracker.h",
|
2019-07-30 16:46:10 +00:00
|
|
|
"src/dawn_native/BuddyAllocator.cpp",
|
|
|
|
"src/dawn_native/BuddyAllocator.h",
|
2019-10-03 18:17:31 +00:00
|
|
|
"src/dawn_native/BuddyMemoryAllocator.cpp",
|
|
|
|
"src/dawn_native/BuddyMemoryAllocator.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Buffer.cpp",
|
|
|
|
"src/dawn_native/Buffer.h",
|
2019-10-30 00:20:03 +00:00
|
|
|
"src/dawn_native/CachedObject.cpp",
|
|
|
|
"src/dawn_native/CachedObject.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/CommandAllocator.cpp",
|
|
|
|
"src/dawn_native/CommandAllocator.h",
|
|
|
|
"src/dawn_native/CommandBuffer.cpp",
|
|
|
|
"src/dawn_native/CommandBuffer.h",
|
|
|
|
"src/dawn_native/CommandBufferStateTracker.cpp",
|
|
|
|
"src/dawn_native/CommandBufferStateTracker.h",
|
2019-02-15 12:54:08 +00:00
|
|
|
"src/dawn_native/CommandEncoder.cpp",
|
|
|
|
"src/dawn_native/CommandEncoder.h",
|
2019-08-13 00:22:28 +00:00
|
|
|
"src/dawn_native/CommandValidation.cpp",
|
|
|
|
"src/dawn_native/CommandValidation.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Commands.cpp",
|
|
|
|
"src/dawn_native/Commands.h",
|
2018-09-21 00:24:37 +00:00
|
|
|
"src/dawn_native/ComputePassEncoder.cpp",
|
|
|
|
"src/dawn_native/ComputePassEncoder.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/ComputePipeline.cpp",
|
|
|
|
"src/dawn_native/ComputePipeline.h",
|
|
|
|
"src/dawn_native/Device.cpp",
|
|
|
|
"src/dawn_native/Device.h",
|
2019-01-29 00:10:07 +00:00
|
|
|
"src/dawn_native/DynamicUploader.cpp",
|
|
|
|
"src/dawn_native/DynamicUploader.h",
|
2019-07-24 18:15:24 +00:00
|
|
|
"src/dawn_native/EncodingContext.cpp",
|
|
|
|
"src/dawn_native/EncodingContext.h",
|
2020-01-15 19:02:13 +00:00
|
|
|
"src/dawn_native/Error.cpp",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Error.h",
|
|
|
|
"src/dawn_native/ErrorData.cpp",
|
|
|
|
"src/dawn_native/ErrorData.h",
|
2019-12-17 00:47:40 +00:00
|
|
|
"src/dawn_native/ErrorInjector.cpp",
|
|
|
|
"src/dawn_native/ErrorInjector.h",
|
2019-09-10 23:19:11 +00:00
|
|
|
"src/dawn_native/ErrorScope.cpp",
|
|
|
|
"src/dawn_native/ErrorScope.h",
|
2019-09-17 18:24:07 +00:00
|
|
|
"src/dawn_native/ErrorScopeTracker.cpp",
|
|
|
|
"src/dawn_native/ErrorScopeTracker.h",
|
2019-08-02 00:06:38 +00:00
|
|
|
"src/dawn_native/Extensions.cpp",
|
|
|
|
"src/dawn_native/Extensions.h",
|
2018-12-03 16:57:34 +00:00
|
|
|
"src/dawn_native/Fence.cpp",
|
|
|
|
"src/dawn_native/Fence.h",
|
|
|
|
"src/dawn_native/FenceSignalTracker.cpp",
|
|
|
|
"src/dawn_native/FenceSignalTracker.h",
|
2019-07-18 09:25:04 +00:00
|
|
|
"src/dawn_native/Format.cpp",
|
|
|
|
"src/dawn_native/Format.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Forward.h",
|
2019-01-04 10:30:40 +00:00
|
|
|
"src/dawn_native/Instance.cpp",
|
|
|
|
"src/dawn_native/Instance.h",
|
2018-10-15 12:54:30 +00:00
|
|
|
"src/dawn_native/ObjectBase.cpp",
|
|
|
|
"src/dawn_native/ObjectBase.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/PassResourceUsage.h",
|
2019-08-08 17:21:39 +00:00
|
|
|
"src/dawn_native/PassResourceUsageTracker.cpp",
|
|
|
|
"src/dawn_native/PassResourceUsageTracker.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/PerStage.cpp",
|
|
|
|
"src/dawn_native/PerStage.h",
|
|
|
|
"src/dawn_native/Pipeline.cpp",
|
|
|
|
"src/dawn_native/Pipeline.h",
|
|
|
|
"src/dawn_native/PipelineLayout.cpp",
|
|
|
|
"src/dawn_native/PipelineLayout.h",
|
2018-09-21 00:24:37 +00:00
|
|
|
"src/dawn_native/ProgrammablePassEncoder.cpp",
|
|
|
|
"src/dawn_native/ProgrammablePassEncoder.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Queue.cpp",
|
|
|
|
"src/dawn_native/Queue.h",
|
|
|
|
"src/dawn_native/RefCounted.cpp",
|
|
|
|
"src/dawn_native/RefCounted.h",
|
2019-08-13 22:12:54 +00:00
|
|
|
"src/dawn_native/RenderBundle.cpp",
|
|
|
|
"src/dawn_native/RenderBundle.h",
|
|
|
|
"src/dawn_native/RenderBundleEncoder.cpp",
|
|
|
|
"src/dawn_native/RenderBundleEncoder.h",
|
2019-07-20 01:34:56 +00:00
|
|
|
"src/dawn_native/RenderEncoderBase.cpp",
|
|
|
|
"src/dawn_native/RenderEncoderBase.h",
|
2018-09-21 00:24:37 +00:00
|
|
|
"src/dawn_native/RenderPassEncoder.cpp",
|
|
|
|
"src/dawn_native/RenderPassEncoder.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/RenderPipeline.cpp",
|
|
|
|
"src/dawn_native/RenderPipeline.h",
|
2019-08-27 23:36:26 +00:00
|
|
|
"src/dawn_native/ResourceHeap.h",
|
2019-10-24 21:28:16 +00:00
|
|
|
"src/dawn_native/ResourceHeapAllocator.h",
|
2019-08-27 23:36:26 +00:00
|
|
|
"src/dawn_native/ResourceMemoryAllocation.cpp",
|
|
|
|
"src/dawn_native/ResourceMemoryAllocation.h",
|
2019-09-18 22:06:41 +00:00
|
|
|
"src/dawn_native/RingBufferAllocator.cpp",
|
|
|
|
"src/dawn_native/RingBufferAllocator.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/Sampler.cpp",
|
|
|
|
"src/dawn_native/Sampler.h",
|
|
|
|
"src/dawn_native/ShaderModule.cpp",
|
|
|
|
"src/dawn_native/ShaderModule.h",
|
2019-01-29 00:10:07 +00:00
|
|
|
"src/dawn_native/StagingBuffer.cpp",
|
|
|
|
"src/dawn_native/StagingBuffer.h",
|
2020-01-15 13:14:12 +00:00
|
|
|
"src/dawn_native/Surface.cpp",
|
|
|
|
"src/dawn_native/Surface.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/SwapChain.cpp",
|
|
|
|
"src/dawn_native/SwapChain.h",
|
|
|
|
"src/dawn_native/Texture.cpp",
|
|
|
|
"src/dawn_native/Texture.h",
|
|
|
|
"src/dawn_native/ToBackend.h",
|
2019-07-30 23:58:52 +00:00
|
|
|
"src/dawn_native/Toggles.cpp",
|
2019-04-26 07:52:57 +00:00
|
|
|
"src/dawn_native/Toggles.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/dawn_platform.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
if (dawn_enable_d3d12) {
|
2018-08-30 12:20:28 +00:00
|
|
|
libs += [ "dxguid.lib" ]
|
2018-07-31 16:50:03 +00:00
|
|
|
sources += [
|
2019-01-30 16:07:48 +00:00
|
|
|
"src/dawn_native/d3d12/AdapterD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/AdapterD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/BackendD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/BackendD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/BindGroupD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/BindGroupD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/BindGroupLayoutD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/BindGroupLayoutD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/BufferD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/BufferD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/CommandAllocatorManager.cpp",
|
|
|
|
"src/dawn_native/d3d12/CommandAllocatorManager.h",
|
|
|
|
"src/dawn_native/d3d12/CommandBufferD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/CommandBufferD3D12.h",
|
2019-10-10 18:06:58 +00:00
|
|
|
"src/dawn_native/d3d12/CommandRecordingContext.cpp",
|
|
|
|
"src/dawn_native/d3d12/CommandRecordingContext.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/ComputePipelineD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/ComputePipelineD3D12.h",
|
2019-10-16 09:26:54 +00:00
|
|
|
"src/dawn_native/d3d12/D3D12Error.cpp",
|
|
|
|
"src/dawn_native/d3d12/D3D12Error.h",
|
2019-06-12 18:54:57 +00:00
|
|
|
"src/dawn_native/d3d12/D3D12Info.cpp",
|
|
|
|
"src/dawn_native/d3d12/D3D12Info.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/DescriptorHeapAllocator.cpp",
|
|
|
|
"src/dawn_native/d3d12/DescriptorHeapAllocator.h",
|
|
|
|
"src/dawn_native/d3d12/DeviceD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/DeviceD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/Forward.h",
|
2019-10-17 17:25:28 +00:00
|
|
|
"src/dawn_native/d3d12/HeapAllocatorD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/HeapAllocatorD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/HeapD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/HeapD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/NativeSwapChainImplD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/NativeSwapChainImplD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/PipelineLayoutD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/PipelineLayoutD3D12.h",
|
2018-08-30 12:20:28 +00:00
|
|
|
"src/dawn_native/d3d12/PlatformFunctions.cpp",
|
|
|
|
"src/dawn_native/d3d12/PlatformFunctions.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/QueueD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/QueueD3D12.h",
|
2019-11-12 18:14:21 +00:00
|
|
|
"src/dawn_native/d3d12/RenderPassBuilderD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/RenderPassBuilderD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/RenderPipelineD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/RenderPipelineD3D12.h",
|
2019-10-02 21:45:09 +00:00
|
|
|
"src/dawn_native/d3d12/ResourceAllocatorManagerD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/ResourceAllocatorManagerD3D12.h",
|
2019-10-09 16:50:42 +00:00
|
|
|
"src/dawn_native/d3d12/ResourceHeapAllocationD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/ResourceHeapAllocationD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/SamplerD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/SamplerD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/ShaderModuleD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/ShaderModuleD3D12.h",
|
2019-01-29 00:10:07 +00:00
|
|
|
"src/dawn_native/d3d12/StagingBufferD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/StagingBufferD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/SwapChainD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/SwapChainD3D12.h",
|
|
|
|
"src/dawn_native/d3d12/TextureCopySplitter.cpp",
|
|
|
|
"src/dawn_native/d3d12/TextureCopySplitter.h",
|
|
|
|
"src/dawn_native/d3d12/TextureD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/TextureD3D12.h",
|
2019-01-04 04:56:08 +00:00
|
|
|
"src/dawn_native/d3d12/UtilsD3D12.cpp",
|
|
|
|
"src/dawn_native/d3d12/UtilsD3D12.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/d3d12/d3d12_platform.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_metal) {
|
|
|
|
libs += [
|
|
|
|
"Cocoa.framework",
|
2018-11-29 10:54:03 +00:00
|
|
|
"IOKit.framework",
|
2019-03-01 12:01:18 +00:00
|
|
|
"IOSurface.framework",
|
2020-01-15 13:14:12 +00:00
|
|
|
"QuartzCore.framework",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
sources += [
|
2020-01-15 13:14:12 +00:00
|
|
|
"src/dawn_native/Surface_metal.mm",
|
2019-02-05 13:02:30 +00:00
|
|
|
"src/dawn_native/metal/BackendMTL.h",
|
|
|
|
"src/dawn_native/metal/BackendMTL.mm",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/metal/BufferMTL.h",
|
|
|
|
"src/dawn_native/metal/BufferMTL.mm",
|
|
|
|
"src/dawn_native/metal/CommandBufferMTL.h",
|
|
|
|
"src/dawn_native/metal/CommandBufferMTL.mm",
|
2020-01-15 18:22:53 +00:00
|
|
|
"src/dawn_native/metal/CommandRecordingContext.h",
|
|
|
|
"src/dawn_native/metal/CommandRecordingContext.mm",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/metal/ComputePipelineMTL.h",
|
|
|
|
"src/dawn_native/metal/ComputePipelineMTL.mm",
|
|
|
|
"src/dawn_native/metal/DeviceMTL.h",
|
|
|
|
"src/dawn_native/metal/DeviceMTL.mm",
|
|
|
|
"src/dawn_native/metal/Forward.h",
|
|
|
|
"src/dawn_native/metal/PipelineLayoutMTL.h",
|
|
|
|
"src/dawn_native/metal/PipelineLayoutMTL.mm",
|
|
|
|
"src/dawn_native/metal/QueueMTL.h",
|
|
|
|
"src/dawn_native/metal/QueueMTL.mm",
|
|
|
|
"src/dawn_native/metal/RenderPipelineMTL.h",
|
|
|
|
"src/dawn_native/metal/RenderPipelineMTL.mm",
|
|
|
|
"src/dawn_native/metal/SamplerMTL.h",
|
|
|
|
"src/dawn_native/metal/SamplerMTL.mm",
|
|
|
|
"src/dawn_native/metal/ShaderModuleMTL.h",
|
|
|
|
"src/dawn_native/metal/ShaderModuleMTL.mm",
|
2019-02-15 21:18:40 +00:00
|
|
|
"src/dawn_native/metal/StagingBufferMTL.h",
|
|
|
|
"src/dawn_native/metal/StagingBufferMTL.mm",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/metal/SwapChainMTL.h",
|
|
|
|
"src/dawn_native/metal/SwapChainMTL.mm",
|
|
|
|
"src/dawn_native/metal/TextureMTL.h",
|
|
|
|
"src/dawn_native/metal/TextureMTL.mm",
|
2019-01-04 04:56:08 +00:00
|
|
|
"src/dawn_native/metal/UtilsMetal.h",
|
|
|
|
"src/dawn_native/metal/UtilsMetal.mm",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_null) {
|
|
|
|
sources += [
|
2019-01-09 08:35:16 +00:00
|
|
|
"src/dawn_native/null/DeviceNull.cpp",
|
|
|
|
"src/dawn_native/null/DeviceNull.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_opengl) {
|
2019-07-22 23:32:29 +00:00
|
|
|
public_deps += [
|
2019-06-13 10:22:32 +00:00
|
|
|
":libdawn_native_opengl_loader_gen",
|
2019-06-17 09:17:29 +00:00
|
|
|
"third_party:khronos_platform",
|
2019-06-13 10:22:32 +00:00
|
|
|
]
|
|
|
|
sources += get_target_outputs(":libdawn_native_opengl_loader_gen")
|
2018-07-31 16:50:03 +00:00
|
|
|
sources += [
|
2019-01-07 09:48:03 +00:00
|
|
|
"src/dawn_native/opengl/BackendGL.cpp",
|
|
|
|
"src/dawn_native/opengl/BackendGL.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/opengl/BufferGL.cpp",
|
|
|
|
"src/dawn_native/opengl/BufferGL.h",
|
|
|
|
"src/dawn_native/opengl/CommandBufferGL.cpp",
|
|
|
|
"src/dawn_native/opengl/CommandBufferGL.h",
|
|
|
|
"src/dawn_native/opengl/ComputePipelineGL.cpp",
|
|
|
|
"src/dawn_native/opengl/ComputePipelineGL.h",
|
|
|
|
"src/dawn_native/opengl/DeviceGL.cpp",
|
|
|
|
"src/dawn_native/opengl/DeviceGL.h",
|
|
|
|
"src/dawn_native/opengl/Forward.h",
|
2019-07-23 06:40:54 +00:00
|
|
|
"src/dawn_native/opengl/GLFormat.cpp",
|
|
|
|
"src/dawn_native/opengl/GLFormat.h",
|
2019-06-17 09:01:09 +00:00
|
|
|
"src/dawn_native/opengl/NativeSwapChainImplGL.cpp",
|
|
|
|
"src/dawn_native/opengl/NativeSwapChainImplGL.h",
|
2019-06-13 10:22:32 +00:00
|
|
|
"src/dawn_native/opengl/OpenGLFunctions.cpp",
|
|
|
|
"src/dawn_native/opengl/OpenGLFunctions.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/opengl/PersistentPipelineStateGL.cpp",
|
|
|
|
"src/dawn_native/opengl/PersistentPipelineStateGL.h",
|
|
|
|
"src/dawn_native/opengl/PipelineGL.cpp",
|
|
|
|
"src/dawn_native/opengl/PipelineGL.h",
|
|
|
|
"src/dawn_native/opengl/PipelineLayoutGL.cpp",
|
|
|
|
"src/dawn_native/opengl/PipelineLayoutGL.h",
|
|
|
|
"src/dawn_native/opengl/QueueGL.cpp",
|
|
|
|
"src/dawn_native/opengl/QueueGL.h",
|
|
|
|
"src/dawn_native/opengl/RenderPipelineGL.cpp",
|
|
|
|
"src/dawn_native/opengl/RenderPipelineGL.h",
|
|
|
|
"src/dawn_native/opengl/SamplerGL.cpp",
|
|
|
|
"src/dawn_native/opengl/SamplerGL.h",
|
|
|
|
"src/dawn_native/opengl/ShaderModuleGL.cpp",
|
|
|
|
"src/dawn_native/opengl/ShaderModuleGL.h",
|
|
|
|
"src/dawn_native/opengl/SwapChainGL.cpp",
|
|
|
|
"src/dawn_native/opengl/SwapChainGL.h",
|
|
|
|
"src/dawn_native/opengl/TextureGL.cpp",
|
|
|
|
"src/dawn_native/opengl/TextureGL.h",
|
2019-01-04 04:56:08 +00:00
|
|
|
"src/dawn_native/opengl/UtilsGL.cpp",
|
|
|
|
"src/dawn_native/opengl/UtilsGL.h",
|
2019-06-17 09:17:29 +00:00
|
|
|
"src/dawn_native/opengl/opengl_platform.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_vulkan) {
|
2019-07-22 23:32:29 +00:00
|
|
|
public_deps += [ "third_party:vulkan_headers" ]
|
2018-07-31 16:50:03 +00:00
|
|
|
sources += [
|
2019-02-04 09:31:09 +00:00
|
|
|
"src/dawn_native/vulkan/AdapterVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/AdapterVk.h",
|
|
|
|
"src/dawn_native/vulkan/BackendVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/BackendVk.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/BindGroupLayoutVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/BindGroupLayoutVk.h",
|
|
|
|
"src/dawn_native/vulkan/BindGroupVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/BindGroupVk.h",
|
|
|
|
"src/dawn_native/vulkan/BufferVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/BufferVk.h",
|
|
|
|
"src/dawn_native/vulkan/CommandBufferVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/CommandBufferVk.h",
|
2019-09-18 04:33:12 +00:00
|
|
|
"src/dawn_native/vulkan/CommandRecordingContext.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/ComputePipelineVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/ComputePipelineVk.h",
|
2019-11-05 15:44:05 +00:00
|
|
|
"src/dawn_native/vulkan/DescriptorSetService.cpp",
|
|
|
|
"src/dawn_native/vulkan/DescriptorSetService.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/DeviceVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/DeviceVk.h",
|
2019-08-10 03:17:52 +00:00
|
|
|
"src/dawn_native/vulkan/ExternalHandle.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/FencedDeleter.cpp",
|
|
|
|
"src/dawn_native/vulkan/FencedDeleter.h",
|
|
|
|
"src/dawn_native/vulkan/Forward.h",
|
|
|
|
"src/dawn_native/vulkan/NativeSwapChainImplVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/NativeSwapChainImplVk.h",
|
|
|
|
"src/dawn_native/vulkan/PipelineLayoutVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/PipelineLayoutVk.h",
|
|
|
|
"src/dawn_native/vulkan/QueueVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/QueueVk.h",
|
|
|
|
"src/dawn_native/vulkan/RenderPassCache.cpp",
|
|
|
|
"src/dawn_native/vulkan/RenderPassCache.h",
|
|
|
|
"src/dawn_native/vulkan/RenderPipelineVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/RenderPipelineVk.h",
|
2019-10-24 21:24:27 +00:00
|
|
|
"src/dawn_native/vulkan/ResourceHeapVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/ResourceHeapVk.h",
|
|
|
|
"src/dawn_native/vulkan/ResourceMemoryAllocatorVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/ResourceMemoryAllocatorVk.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/SamplerVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/SamplerVk.h",
|
|
|
|
"src/dawn_native/vulkan/ShaderModuleVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/ShaderModuleVk.h",
|
2019-02-06 18:10:12 +00:00
|
|
|
"src/dawn_native/vulkan/StagingBufferVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/StagingBufferVk.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/SwapChainVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/SwapChainVk.h",
|
|
|
|
"src/dawn_native/vulkan/TextureVk.cpp",
|
|
|
|
"src/dawn_native/vulkan/TextureVk.h",
|
2019-01-04 04:56:08 +00:00
|
|
|
"src/dawn_native/vulkan/UtilsVulkan.cpp",
|
|
|
|
"src/dawn_native/vulkan/UtilsVulkan.h",
|
2019-01-04 10:18:40 +00:00
|
|
|
"src/dawn_native/vulkan/VulkanError.cpp",
|
|
|
|
"src/dawn_native/vulkan/VulkanError.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
"src/dawn_native/vulkan/VulkanFunctions.cpp",
|
|
|
|
"src/dawn_native/vulkan/VulkanFunctions.h",
|
|
|
|
"src/dawn_native/vulkan/VulkanInfo.cpp",
|
|
|
|
"src/dawn_native/vulkan/VulkanInfo.h",
|
2019-08-10 03:17:52 +00:00
|
|
|
"src/dawn_native/vulkan/external_memory/MemoryService.h",
|
|
|
|
"src/dawn_native/vulkan/external_semaphore/SemaphoreService.h",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
2019-08-10 03:17:52 +00:00
|
|
|
|
2019-11-21 16:02:10 +00:00
|
|
|
if (is_chromeos) {
|
|
|
|
sources += [
|
|
|
|
"src/dawn_native/vulkan/external_memory/MemoryServiceDmaBuf.cpp",
|
|
|
|
"src/dawn_native/vulkan/external_semaphore/SemaphoreServiceOpaqueFD.cpp",
|
|
|
|
]
|
|
|
|
} else if (is_linux) {
|
2019-08-10 03:17:52 +00:00
|
|
|
sources += [
|
|
|
|
"src/dawn_native/vulkan/external_memory/MemoryServiceOpaqueFD.cpp",
|
|
|
|
"src/dawn_native/vulkan/external_semaphore/SemaphoreServiceOpaqueFD.cpp",
|
|
|
|
]
|
2019-09-10 10:07:28 +00:00
|
|
|
} else if (is_fuchsia) {
|
|
|
|
sources += [
|
|
|
|
"src/dawn_native/vulkan/external_memory/MemoryServiceZirconHandle.cpp",
|
|
|
|
"src/dawn_native/vulkan/external_semaphore/SemaphoreServiceZirconHandle.cpp",
|
|
|
|
]
|
2019-08-10 03:17:52 +00:00
|
|
|
} else {
|
|
|
|
sources += [
|
|
|
|
"src/dawn_native/vulkan/external_memory/MemoryServiceNull.cpp",
|
|
|
|
"src/dawn_native/vulkan/external_semaphore/SemaphoreServiceNull.cpp",
|
|
|
|
]
|
|
|
|
}
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
if (build_with_chromium && is_fuchsia) {
|
|
|
|
# Necessary to ensure that the Vulkan libraries will be in the
|
|
|
|
# final Fuchsia package.
|
|
|
|
data_deps = [
|
|
|
|
# NOTE: The line below is a work around for http://crbug.com/1001081
|
|
|
|
"//third_party/fuchsia-sdk/sdk:trace_engine",
|
|
|
|
"//third_party/fuchsia-sdk:vulkan_base",
|
|
|
|
"//third_party/fuchsia-sdk:vulkan_validation",
|
|
|
|
]
|
|
|
|
}
|
2019-11-07 12:13:27 +00:00
|
|
|
if (dawn_enable_vulkan_validation_layers) {
|
2019-11-20 18:10:11 +00:00
|
|
|
defines += [
|
2019-11-07 12:13:27 +00:00
|
|
|
"DAWN_ENABLE_VULKAN_VALIDATION_LAYERS",
|
|
|
|
"DAWN_VK_DATA_DIR=\"$vulkan_data_subdir\"",
|
|
|
|
]
|
|
|
|
}
|
2019-11-26 18:21:51 +00:00
|
|
|
|
|
|
|
if (use_swiftshader) {
|
2020-01-16 00:34:30 +00:00
|
|
|
data_deps += [
|
|
|
|
"${dawn_swiftshader_dir}/src/Vulkan:icd_file",
|
|
|
|
"${dawn_swiftshader_dir}/src/Vulkan:swiftshader_libvulkan",
|
|
|
|
]
|
|
|
|
defines += [
|
|
|
|
"DAWN_ENABLE_SWIFTSHADER",
|
|
|
|
"DAWN_SWIFTSHADER_VK_ICD_JSON=\"${swiftshader_icd_file_name}\"",
|
|
|
|
]
|
2019-11-26 18:21:51 +00:00
|
|
|
}
|
2018-07-31 16:50:03 +00:00
|
|
|
}
|
2020-01-15 13:14:12 +00:00
|
|
|
|
|
|
|
if (dawn_use_x11) {
|
|
|
|
libs += [ "X11" ]
|
|
|
|
}
|
2018-07-31 16:50:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-09 09:05:18 +00:00
|
|
|
# The static and shared libraries for libdawn_native. Most of the files are
|
|
|
|
# already compiled in libdawn_native_sources, but we still need to compile
|
|
|
|
# files defining exported symbols.
|
2019-01-25 03:20:20 +00:00
|
|
|
dawn_component("libdawn_native") {
|
2019-01-09 09:05:18 +00:00
|
|
|
DEFINE_PREFIX = "DAWN_NATIVE"
|
2018-08-12 19:07:46 +00:00
|
|
|
|
|
|
|
#Make headers publically visible
|
|
|
|
public_deps = [
|
|
|
|
":libdawn_native_headers",
|
|
|
|
]
|
2018-08-03 13:57:43 +00:00
|
|
|
|
2019-01-09 09:05:18 +00:00
|
|
|
deps = [
|
2019-01-15 20:49:53 +00:00
|
|
|
":libdawn_native_sources",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-01-09 09:05:18 +00:00
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/dawn_native/DawnNative.cpp",
|
|
|
|
]
|
|
|
|
configs = [ ":libdawn_native_internal" ]
|
2019-10-24 09:44:13 +00:00
|
|
|
public_configs = [ ":libdawn_native_weak_framework" ]
|
2019-01-09 09:05:18 +00:00
|
|
|
|
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
sources += [ "src/dawn_native/d3d12/D3D12Backend.cpp" ]
|
|
|
|
}
|
|
|
|
if (dawn_enable_metal) {
|
|
|
|
sources += [ "src/dawn_native/metal/MetalBackend.mm" ]
|
|
|
|
}
|
|
|
|
if (dawn_enable_null) {
|
|
|
|
sources += [ "src/dawn_native/null/NullBackend.cpp" ]
|
|
|
|
}
|
|
|
|
if (dawn_enable_opengl) {
|
|
|
|
sources += [ "src/dawn_native/opengl/OpenGLBackend.cpp" ]
|
|
|
|
}
|
|
|
|
if (dawn_enable_vulkan) {
|
|
|
|
sources += [ "src/dawn_native/vulkan/VulkanBackend.cpp" ]
|
2019-11-07 12:13:27 +00:00
|
|
|
|
|
|
|
if (dawn_enable_vulkan_validation_layers) {
|
|
|
|
data_deps = [
|
|
|
|
"${dawn_vulkan_validation_layers_dir}:vulkan_validation_layers",
|
|
|
|
]
|
|
|
|
if (!is_android) {
|
|
|
|
data_deps +=
|
|
|
|
[ "${dawn_vulkan_validation_layers_dir}:vulkan_gen_json_files" ]
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 13:57:43 +00:00
|
|
|
}
|
2018-07-31 16:50:03 +00:00
|
|
|
}
|
|
|
|
|
2018-08-12 19:07:46 +00:00
|
|
|
###############################################################################
|
2019-01-09 09:05:18 +00:00
|
|
|
# libdawn_wire
|
2018-08-12 19:07:46 +00:00
|
|
|
###############################################################################
|
2018-07-31 16:50:03 +00:00
|
|
|
|
2019-06-11 18:03:05 +00:00
|
|
|
dawn_json_generator("libdawn_wire_gen") {
|
2018-07-31 16:50:03 +00:00
|
|
|
target = "dawn_wire"
|
2018-08-16 13:32:35 +00:00
|
|
|
outputs = [
|
2019-09-18 04:33:12 +00:00
|
|
|
"src/dawn_wire/WireCmd_autogen.h",
|
|
|
|
"src/dawn_wire/WireCmd_autogen.cpp",
|
|
|
|
"src/dawn_wire/client/ApiObjects_autogen.h",
|
|
|
|
"src/dawn_wire/client/ApiProcs_autogen.cpp",
|
|
|
|
"src/dawn_wire/client/ApiProcs_autogen.h",
|
|
|
|
"src/dawn_wire/client/ClientBase_autogen.h",
|
|
|
|
"src/dawn_wire/client/ClientHandlers_autogen.cpp",
|
|
|
|
"src/dawn_wire/client/ClientPrototypes_autogen.inc",
|
|
|
|
"src/dawn_wire/server/ServerBase_autogen.h",
|
|
|
|
"src/dawn_wire/server/ServerDoers_autogen.cpp",
|
|
|
|
"src/dawn_wire/server/ServerHandlers_autogen.cpp",
|
|
|
|
"src/dawn_wire/server/ServerPrototypes_autogen.inc",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-01-25 03:20:20 +00:00
|
|
|
dawn_component("libdawn_wire") {
|
2019-01-09 09:05:18 +00:00
|
|
|
DEFINE_PREFIX = "DAWN_WIRE"
|
|
|
|
|
2018-07-31 16:50:03 +00:00
|
|
|
deps = [
|
2018-08-16 13:32:35 +00:00
|
|
|
":libdawn_wire_gen",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-03-08 00:51:27 +00:00
|
|
|
"${dawn_root}/src/dawn_wire:libdawn_wire_headers",
|
2018-07-31 16:50:03 +00:00
|
|
|
]
|
2018-08-12 19:07:46 +00:00
|
|
|
|
2019-03-07 01:46:39 +00:00
|
|
|
configs = [ "${dawn_root}/src/common:dawn_internal" ]
|
2018-08-16 13:32:35 +00:00
|
|
|
sources = get_target_outputs(":libdawn_wire_gen")
|
2019-01-15 20:49:53 +00:00
|
|
|
sources += [
|
2019-02-11 21:50:16 +00:00
|
|
|
"src/dawn_wire/WireClient.cpp",
|
2019-01-15 20:49:53 +00:00
|
|
|
"src/dawn_wire/WireDeserializeAllocator.cpp",
|
|
|
|
"src/dawn_wire/WireDeserializeAllocator.h",
|
2019-02-11 21:50:16 +00:00
|
|
|
"src/dawn_wire/WireServer.cpp",
|
2019-01-16 02:18:06 +00:00
|
|
|
"src/dawn_wire/client/ApiObjects.h",
|
|
|
|
"src/dawn_wire/client/ApiProcs.cpp",
|
|
|
|
"src/dawn_wire/client/Buffer.cpp",
|
|
|
|
"src/dawn_wire/client/Buffer.h",
|
|
|
|
"src/dawn_wire/client/Client.cpp",
|
|
|
|
"src/dawn_wire/client/Client.h",
|
2019-01-30 03:00:17 +00:00
|
|
|
"src/dawn_wire/client/ClientDoers.cpp",
|
2019-07-19 16:01:48 +00:00
|
|
|
"src/dawn_wire/client/ClientInlineMemoryTransferService.cpp",
|
2019-01-30 02:31:37 +00:00
|
|
|
"src/dawn_wire/client/Device.cpp",
|
|
|
|
"src/dawn_wire/client/Device.h",
|
2019-01-16 02:18:06 +00:00
|
|
|
"src/dawn_wire/client/Fence.cpp",
|
|
|
|
"src/dawn_wire/client/Fence.h",
|
|
|
|
"src/dawn_wire/client/ObjectAllocator.h",
|
2019-01-30 02:20:58 +00:00
|
|
|
"src/dawn_wire/server/ObjectStorage.h",
|
|
|
|
"src/dawn_wire/server/Server.cpp",
|
|
|
|
"src/dawn_wire/server/Server.h",
|
|
|
|
"src/dawn_wire/server/ServerBuffer.cpp",
|
|
|
|
"src/dawn_wire/server/ServerDevice.cpp",
|
|
|
|
"src/dawn_wire/server/ServerFence.cpp",
|
2019-07-19 16:01:48 +00:00
|
|
|
"src/dawn_wire/server/ServerInlineMemoryTransferService.cpp",
|
2019-01-30 02:20:58 +00:00
|
|
|
"src/dawn_wire/server/ServerQueue.cpp",
|
2019-01-15 20:49:53 +00:00
|
|
|
]
|
2018-08-16 13:32:35 +00:00
|
|
|
|
2018-11-14 21:04:26 +00:00
|
|
|
# Make headers publically visible
|
|
|
|
public_deps = [
|
2019-03-08 00:51:27 +00:00
|
|
|
"${dawn_root}/src/dawn_wire:libdawn_wire_headers",
|
2018-11-14 21:04:26 +00:00
|
|
|
]
|
2018-08-03 13:57:43 +00:00
|
|
|
}
|
|
|
|
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
###############################################################################
|
|
|
|
# GLFW wrapping target
|
|
|
|
###############################################################################
|
|
|
|
|
2020-01-15 13:14:12 +00:00
|
|
|
supports_glfw_for_windowing = is_win || (is_linux && !is_chromeos) || is_mac
|
|
|
|
|
2019-09-11 16:53:46 +00:00
|
|
|
# GLFW does not support ChromeOS, Android or Fuchsia, so provide a small mock
|
|
|
|
# library that can be linked into the Dawn tests on these platforms. Otherwise,
|
|
|
|
# use the real library from third_party/.
|
2020-01-15 13:14:12 +00:00
|
|
|
if (supports_glfw_for_windowing) {
|
2019-09-11 16:53:46 +00:00
|
|
|
group("dawn_glfw") {
|
|
|
|
public_deps = [
|
|
|
|
"third_party:glfw",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} else if (is_fuchsia) {
|
|
|
|
# The mock implementation of GLFW on Fuchsia
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
config("dawn_glfw_public_config") {
|
|
|
|
# Allow inclusion of <GLFW/glfw3.h>
|
2019-09-12 12:50:31 +00:00
|
|
|
include_dirs = [ "${dawn_glfw_dir}/include" ]
|
|
|
|
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
# The GLFW/glfw3.h header includes <GL/gl.h> by default, but the latter
|
|
|
|
# does not exist on Fuchsia. Defining GLFW_INCLUDE_NONE helps work around
|
|
|
|
# the issue, but it needs to be defined for any file that includes the
|
|
|
|
# header.
|
|
|
|
defines = [
|
|
|
|
"GLFW_INCLUDE_NONE",
|
|
|
|
"GLFW_INCLUDE_VULKAN",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
static_library("dawn_glfw") {
|
|
|
|
sources = [
|
|
|
|
# NOTE: The header below is required to pass "gn check".
|
|
|
|
"${dawn_glfw_dir}/include/GLFW/glfw3.h",
|
|
|
|
"src/utils/Glfw3Fuchsia.cpp",
|
|
|
|
]
|
|
|
|
public_configs = [ ":dawn_glfw_public_config" ]
|
|
|
|
deps = [
|
|
|
|
"${dawn_root}/src/common",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} else {
|
2019-09-11 16:53:46 +00:00
|
|
|
# Just skip GLFW on other systems
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
group("dawn_glfw") {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-03 13:57:43 +00:00
|
|
|
###############################################################################
|
|
|
|
# Utils for tests and samples
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
static_library("dawn_utils") {
|
2019-03-07 01:46:39 +00:00
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
2018-08-03 13:57:43 +00:00
|
|
|
|
|
|
|
sources = [
|
2019-08-13 22:12:54 +00:00
|
|
|
"src/utils/ComboRenderBundleEncoderDescriptor.cpp",
|
|
|
|
"src/utils/ComboRenderBundleEncoderDescriptor.h",
|
2018-12-10 19:47:22 +00:00
|
|
|
"src/utils/ComboRenderPipelineDescriptor.cpp",
|
|
|
|
"src/utils/ComboRenderPipelineDescriptor.h",
|
2018-08-03 13:57:43 +00:00
|
|
|
"src/utils/SystemUtils.cpp",
|
|
|
|
"src/utils/SystemUtils.h",
|
|
|
|
"src/utils/TerribleCommandBuffer.cpp",
|
|
|
|
"src/utils/TerribleCommandBuffer.h",
|
2019-08-28 23:18:10 +00:00
|
|
|
"src/utils/Timer.h",
|
2019-10-25 11:36:47 +00:00
|
|
|
"src/utils/WGPUHelpers.cpp",
|
|
|
|
"src/utils/WGPUHelpers.h",
|
2018-08-03 13:57:43 +00:00
|
|
|
]
|
2020-01-15 13:14:12 +00:00
|
|
|
deps = [
|
|
|
|
":libdawn_native",
|
|
|
|
":libdawn_wire",
|
|
|
|
"${dawn_root}/src/common",
|
|
|
|
"${dawn_shaderc_dir}:libshaderc",
|
|
|
|
]
|
|
|
|
libs = []
|
2019-02-13 18:42:38 +00:00
|
|
|
|
2019-08-28 23:18:10 +00:00
|
|
|
if (is_win) {
|
|
|
|
sources += [ "src/utils/WindowsTimer.cpp" ]
|
|
|
|
} else if (is_mac) {
|
2020-01-15 13:14:12 +00:00
|
|
|
sources += [
|
|
|
|
"src/utils/OSXTimer.cpp",
|
|
|
|
"src/utils/ObjCUtils.h",
|
|
|
|
"src/utils/ObjCUtils.mm",
|
|
|
|
]
|
|
|
|
libs += [ "QuartzCore.framework" ]
|
2019-08-28 23:18:10 +00:00
|
|
|
} else {
|
|
|
|
sources += [ "src/utils/PosixTimer.cpp" ]
|
|
|
|
}
|
|
|
|
|
2020-01-15 13:14:12 +00:00
|
|
|
if (supports_glfw_for_windowing) {
|
|
|
|
sources += [
|
|
|
|
"src/utils/GLFWUtils.cpp",
|
|
|
|
"src/utils/GLFWUtils.h",
|
|
|
|
]
|
|
|
|
deps += [ ":dawn_glfw" ]
|
|
|
|
|
|
|
|
if (dawn_enable_metal) {
|
|
|
|
sources += [ "src/utils/GLFWUtils_metal.mm" ]
|
|
|
|
libs += [ "Metal.framework" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-13 18:42:38 +00:00
|
|
|
public_deps = [
|
2019-10-16 10:26:01 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp_headers",
|
2019-02-13 18:42:38 +00:00
|
|
|
]
|
2019-08-13 21:45:44 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 13:57:43 +00:00
|
|
|
###############################################################################
|
|
|
|
# Dawn test targets
|
|
|
|
###############################################################################
|
|
|
|
|
2019-10-28 22:15:47 +00:00
|
|
|
dawn_json_generator("mock_webgpu_gen") {
|
|
|
|
target = "mock_webgpu"
|
2018-12-08 10:35:53 +00:00
|
|
|
outputs = [
|
2019-10-28 22:15:47 +00:00
|
|
|
"src/dawn/mock_webgpu.h",
|
|
|
|
"src/dawn/mock_webgpu.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
test("dawn_unittests") {
|
2019-03-07 01:46:39 +00:00
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
2018-12-08 10:35:53 +00:00
|
|
|
|
2018-08-03 13:57:43 +00:00
|
|
|
deps = [
|
2018-12-08 10:35:53 +00:00
|
|
|
":dawn_utils",
|
2019-01-09 09:05:18 +00:00
|
|
|
":libdawn_native",
|
2019-01-15 20:49:53 +00:00
|
|
|
":libdawn_native_sources",
|
2018-12-08 10:35:53 +00:00
|
|
|
":libdawn_wire",
|
2019-10-28 22:15:47 +00:00
|
|
|
":mock_webgpu_gen",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2018-12-08 10:35:53 +00:00
|
|
|
"third_party:gmock_and_gtest",
|
2018-08-03 13:57:43 +00:00
|
|
|
]
|
2018-12-08 10:35:53 +00:00
|
|
|
|
|
|
|
# Add internal Dawn Native headers and config for internal unittests.
|
|
|
|
deps += [ ":libdawn_native_headers" ]
|
|
|
|
configs += [ ":libdawn_native_internal" ]
|
|
|
|
|
2019-10-28 22:15:47 +00:00
|
|
|
sources = get_target_outputs(":mock_webgpu_gen")
|
2019-07-19 16:16:58 +00:00
|
|
|
sources += [
|
|
|
|
"src/dawn_wire/client/ClientMemoryTransferService_mock.cpp",
|
|
|
|
"src/dawn_wire/client/ClientMemoryTransferService_mock.h",
|
|
|
|
"src/dawn_wire/server/ServerMemoryTransferService_mock.cpp",
|
|
|
|
"src/dawn_wire/server/ServerMemoryTransferService_mock.h",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/BitSetIteratorTests.cpp",
|
2019-07-30 16:46:10 +00:00
|
|
|
"src/tests/unittests/BuddyAllocatorTests.cpp",
|
2019-10-03 18:17:31 +00:00
|
|
|
"src/tests/unittests/BuddyMemoryAllocatorTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/CommandAllocatorTests.cpp",
|
|
|
|
"src/tests/unittests/EnumClassBitmasksTests.cpp",
|
|
|
|
"src/tests/unittests/ErrorTests.cpp",
|
2019-08-02 00:06:38 +00:00
|
|
|
"src/tests/unittests/ExtensionTests.cpp",
|
2019-10-15 12:08:48 +00:00
|
|
|
"src/tests/unittests/GetProcAddressTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/MathTests.cpp",
|
|
|
|
"src/tests/unittests/ObjectBaseTests.cpp",
|
|
|
|
"src/tests/unittests/PerStageTests.cpp",
|
|
|
|
"src/tests/unittests/RefCountedTests.cpp",
|
|
|
|
"src/tests/unittests/ResultTests.cpp",
|
2019-09-18 22:06:41 +00:00
|
|
|
"src/tests/unittests/RingBufferAllocatorTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/SerialMapTests.cpp",
|
|
|
|
"src/tests/unittests/SerialQueueTests.cpp",
|
2019-11-07 12:13:27 +00:00
|
|
|
"src/tests/unittests/SystemUtilsTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/ToBackendTests.cpp",
|
|
|
|
"src/tests/unittests/validation/BindGroupValidationTests.cpp",
|
|
|
|
"src/tests/unittests/validation/BufferValidationTests.cpp",
|
|
|
|
"src/tests/unittests/validation/CommandBufferValidationTests.cpp",
|
2019-06-10 20:56:27 +00:00
|
|
|
"src/tests/unittests/validation/ComputeIndirectValidationTests.cpp",
|
2019-10-22 17:28:20 +00:00
|
|
|
"src/tests/unittests/validation/ComputePassValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/ComputeValidationTests.cpp",
|
|
|
|
"src/tests/unittests/validation/CopyCommandsValidationTests.cpp",
|
2019-02-20 20:21:00 +00:00
|
|
|
"src/tests/unittests/validation/DebugMarkerValidationTests.cpp",
|
2019-06-10 20:56:27 +00:00
|
|
|
"src/tests/unittests/validation/DrawIndirectValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/DynamicStateCommandValidationTests.cpp",
|
2019-09-10 23:19:11 +00:00
|
|
|
"src/tests/unittests/validation/ErrorScopeValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/FenceValidationTests.cpp",
|
2019-11-22 17:02:22 +00:00
|
|
|
"src/tests/unittests/validation/GetBindGroupLayoutValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/QueueSubmitValidationTests.cpp",
|
2019-08-13 22:12:54 +00:00
|
|
|
"src/tests/unittests/validation/RenderBundleValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/RenderPassDescriptorValidationTests.cpp",
|
2019-03-28 15:28:01 +00:00
|
|
|
"src/tests/unittests/validation/RenderPassValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/RenderPipelineValidationTests.cpp",
|
2019-05-22 17:18:52 +00:00
|
|
|
"src/tests/unittests/validation/SamplerValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/ShaderModuleValidationTests.cpp",
|
2018-12-12 09:27:16 +00:00
|
|
|
"src/tests/unittests/validation/TextureValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/TextureViewValidationTests.cpp",
|
2019-04-26 07:52:57 +00:00
|
|
|
"src/tests/unittests/validation/ToggleValidationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/unittests/validation/ValidationTest.cpp",
|
|
|
|
"src/tests/unittests/validation/ValidationTest.h",
|
|
|
|
"src/tests/unittests/validation/VertexBufferValidationTests.cpp",
|
2019-11-07 22:23:29 +00:00
|
|
|
"src/tests/unittests/validation/VertexStateValidationTests.cpp",
|
2019-02-14 18:47:07 +00:00
|
|
|
"src/tests/unittests/wire/WireArgumentTests.cpp",
|
|
|
|
"src/tests/unittests/wire/WireBasicTests.cpp",
|
|
|
|
"src/tests/unittests/wire/WireBufferMappingTests.cpp",
|
2019-03-28 17:12:47 +00:00
|
|
|
"src/tests/unittests/wire/WireErrorCallbackTests.cpp",
|
2019-02-14 18:47:07 +00:00
|
|
|
"src/tests/unittests/wire/WireFenceTests.cpp",
|
2019-03-28 12:57:11 +00:00
|
|
|
"src/tests/unittests/wire/WireInjectTextureTests.cpp",
|
2019-07-19 16:16:58 +00:00
|
|
|
"src/tests/unittests/wire/WireMemoryTransferServiceTests.cpp",
|
2019-02-14 18:47:07 +00:00
|
|
|
"src/tests/unittests/wire/WireOptionalTests.cpp",
|
|
|
|
"src/tests/unittests/wire/WireTest.cpp",
|
|
|
|
"src/tests/unittests/wire/WireTest.h",
|
2019-10-24 22:27:27 +00:00
|
|
|
"src/tests/unittests/wire/WireWGPUDevicePropertiesTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
sources += [ "src/tests/unittests/d3d12/CopySplitTests.cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
# When building inside Chromium, use their gtest main function because it is
|
|
|
|
# needed to run in swarming correctly.
|
|
|
|
if (build_with_chromium) {
|
|
|
|
sources += [ "//gpu/dawn_unittests_main.cc" ]
|
|
|
|
} else {
|
|
|
|
sources += [ "src/tests/UnittestsMain.cpp" ]
|
|
|
|
}
|
2018-08-03 13:57:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 03:17:52 +00:00
|
|
|
source_set("dawn_end2end_tests_sources") {
|
2019-03-07 01:46:39 +00:00
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
2019-08-10 03:17:52 +00:00
|
|
|
testonly = true
|
2018-12-08 10:35:53 +00:00
|
|
|
|
2018-08-03 13:57:43 +00:00
|
|
|
deps = [
|
2018-12-08 10:35:53 +00:00
|
|
|
":dawn_utils",
|
|
|
|
":libdawn_native",
|
|
|
|
":libdawn_wire",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2018-12-08 10:35:53 +00:00
|
|
|
"third_party:gmock_and_gtest",
|
2018-08-03 13:57:43 +00:00
|
|
|
]
|
2018-12-08 10:35:53 +00:00
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/tests/DawnTest.h",
|
|
|
|
"src/tests/end2end/BasicTests.cpp",
|
|
|
|
"src/tests/end2end/BindGroupTests.cpp",
|
|
|
|
"src/tests/end2end/BufferTests.cpp",
|
2019-03-27 00:01:33 +00:00
|
|
|
"src/tests/end2end/ClipSpaceTests.cpp",
|
2019-02-16 02:27:30 +00:00
|
|
|
"src/tests/end2end/ColorStateTests.cpp",
|
2019-07-02 23:55:55 +00:00
|
|
|
"src/tests/end2end/CompressedTextureFormatTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/ComputeCopyStorageBufferTests.cpp",
|
2019-06-10 20:56:27 +00:00
|
|
|
"src/tests/end2end/ComputeIndirectTests.cpp",
|
2019-04-26 02:08:12 +00:00
|
|
|
"src/tests/end2end/ComputeSharedMemoryTests.cpp",
|
2019-10-22 17:28:20 +00:00
|
|
|
"src/tests/end2end/ComputeStorageBufferBarrierTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/CopyTests.cpp",
|
2019-07-06 00:11:10 +00:00
|
|
|
"src/tests/end2end/CullingTests.cpp",
|
2019-02-20 20:21:00 +00:00
|
|
|
"src/tests/end2end/DebugMarkerTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/DepthStencilStateTests.cpp",
|
2019-03-27 22:04:10 +00:00
|
|
|
"src/tests/end2end/DestroyTests.cpp",
|
2020-01-15 19:02:13 +00:00
|
|
|
"src/tests/end2end/DeviceLostTests.cpp",
|
2019-06-10 20:56:27 +00:00
|
|
|
"src/tests/end2end/DrawIndexedIndirectTests.cpp",
|
2018-12-13 01:05:26 +00:00
|
|
|
"src/tests/end2end/DrawIndexedTests.cpp",
|
2019-06-10 20:56:27 +00:00
|
|
|
"src/tests/end2end/DrawIndirectTests.cpp",
|
2019-01-30 09:01:08 +00:00
|
|
|
"src/tests/end2end/DrawTests.cpp",
|
2019-05-23 00:45:12 +00:00
|
|
|
"src/tests/end2end/DynamicBufferOffsetTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/FenceTests.cpp",
|
2019-11-18 04:28:24 +00:00
|
|
|
"src/tests/end2end/GpuMemorySynchronizationTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/IndexFormatTests.cpp",
|
2019-03-28 14:18:11 +00:00
|
|
|
"src/tests/end2end/MultisampledRenderingTests.cpp",
|
2019-05-11 00:21:50 +00:00
|
|
|
"src/tests/end2end/NonzeroTextureCreationTests.cpp",
|
2019-05-01 12:57:27 +00:00
|
|
|
"src/tests/end2end/ObjectCachingTests.cpp",
|
2019-08-02 18:15:08 +00:00
|
|
|
"src/tests/end2end/OpArrayLengthTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/PrimitiveTopologyTests.cpp",
|
2019-08-14 02:01:14 +00:00
|
|
|
"src/tests/end2end/RenderBundleTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/RenderPassLoadOpTests.cpp",
|
2019-02-15 10:55:08 +00:00
|
|
|
"src/tests/end2end/RenderPassTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/SamplerTests.cpp",
|
|
|
|
"src/tests/end2end/ScissorTests.cpp",
|
2019-07-01 09:58:07 +00:00
|
|
|
"src/tests/end2end/TextureFormatTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/TextureViewTests.cpp",
|
2019-06-11 18:11:05 +00:00
|
|
|
"src/tests/end2end/TextureZeroInitTests.cpp",
|
2019-04-26 15:25:18 +00:00
|
|
|
"src/tests/end2end/VertexFormatTests.cpp",
|
2019-11-07 22:23:29 +00:00
|
|
|
"src/tests/end2end/VertexStateTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
"src/tests/end2end/ViewportOrientationTests.cpp",
|
2019-07-16 19:27:09 +00:00
|
|
|
"src/tests/end2end/ViewportTests.cpp",
|
2018-12-08 10:35:53 +00:00
|
|
|
]
|
|
|
|
|
2020-01-23 17:20:38 +00:00
|
|
|
# Validation tests that need OS windows live in end2end tests.
|
|
|
|
sources += [
|
|
|
|
"src/tests/unittests/validation/ValidationTest.cpp",
|
|
|
|
"src/tests/unittests/validation/ValidationTest.h",
|
|
|
|
]
|
|
|
|
|
2019-03-01 12:01:18 +00:00
|
|
|
libs = []
|
|
|
|
|
2019-09-02 19:19:34 +00:00
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
sources += [ "src/tests/end2end/D3D12ResourceWrappingTests.cpp" ]
|
|
|
|
libs += [
|
|
|
|
"d3d11.lib",
|
|
|
|
"dxgi.lib",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-01-15 13:14:12 +00:00
|
|
|
if (dawn_enable_metal) {
|
|
|
|
sources += [ "src/tests/end2end/IOSurfaceWrappingTests.cpp" ]
|
|
|
|
libs += [ "IOSurface.framework" ]
|
|
|
|
}
|
|
|
|
|
2019-08-13 21:45:44 +00:00
|
|
|
if (dawn_enable_opengl) {
|
2020-01-15 13:14:12 +00:00
|
|
|
assert(supports_glfw_for_windowing)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (supports_glfw_for_windowing) {
|
2020-01-23 17:20:38 +00:00
|
|
|
sources += [
|
|
|
|
"src/tests/end2end/SwapChainValidationTests.cpp",
|
|
|
|
"src/tests/end2end/WindowSurfaceTests.cpp",
|
|
|
|
]
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
deps += [ ":dawn_glfw" ]
|
2019-08-13 21:45:44 +00:00
|
|
|
}
|
2019-08-10 03:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
source_set("dawn_white_box_tests_sources") {
|
2020-01-15 18:22:53 +00:00
|
|
|
configs += [ ":libdawn_native_internal" ]
|
2019-08-10 03:17:52 +00:00
|
|
|
testonly = true
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":dawn_utils",
|
|
|
|
":libdawn_native_sources",
|
2020-01-06 19:56:17 +00:00
|
|
|
":libdawn_native_static", # Static because the tests both link against and have libdawn_native
|
|
|
|
# sources. MSVC errors when both importing and exporting symbols.
|
2019-08-10 03:17:52 +00:00
|
|
|
":libdawn_wire",
|
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2019-08-10 03:17:52 +00:00
|
|
|
"third_party:gmock_and_gtest",
|
|
|
|
]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/tests/DawnTest.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
if (dawn_enable_vulkan) {
|
|
|
|
deps += [ "third_party:vulkan_headers" ]
|
|
|
|
|
2020-02-20 19:19:13 +00:00
|
|
|
if (is_chromeos) {
|
|
|
|
sources += [ "src/tests/white_box/VulkanImageWrappingTestsDmaBuf.cpp" ]
|
|
|
|
} else if (is_linux) {
|
|
|
|
sources += [ "src/tests/white_box/VulkanImageWrappingTestsOpaqueFD.cpp" ]
|
2019-08-10 03:17:52 +00:00
|
|
|
}
|
2019-12-17 00:47:40 +00:00
|
|
|
|
|
|
|
if (dawn_enable_error_injection) {
|
|
|
|
sources += [ "src/tests/white_box/VulkanErrorInjectorTests.cpp" ]
|
|
|
|
}
|
2019-08-10 03:17:52 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 19:34:45 +00:00
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
sources += [ "src/tests/white_box/D3D12SmallTextureTests.cpp" ]
|
|
|
|
}
|
|
|
|
|
2020-01-15 18:22:53 +00:00
|
|
|
if (dawn_enable_metal) {
|
|
|
|
sources += [ "src/tests/white_box/MetalAutoreleasePoolTests.mm" ]
|
|
|
|
}
|
|
|
|
|
2019-08-13 21:45:44 +00:00
|
|
|
if (dawn_enable_opengl) {
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
deps += [ ":dawn_glfw" ]
|
2019-08-13 21:45:44 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 03:17:52 +00:00
|
|
|
libs = []
|
|
|
|
}
|
|
|
|
|
|
|
|
test("dawn_end2end_tests") {
|
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":dawn_end2end_tests_sources",
|
|
|
|
":dawn_utils",
|
|
|
|
":dawn_white_box_tests_sources",
|
|
|
|
":libdawn_native",
|
|
|
|
":libdawn_wire",
|
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2019-08-10 03:17:52 +00:00
|
|
|
"third_party:gmock_and_gtest",
|
|
|
|
]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/tests/DawnTest.cpp",
|
|
|
|
"src/tests/DawnTest.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
libs = []
|
2019-03-01 12:01:18 +00:00
|
|
|
|
2018-12-08 10:35:53 +00:00
|
|
|
# When building inside Chromium, use their gtest main function because it is
|
|
|
|
# needed to run in swarming correctly.
|
|
|
|
if (build_with_chromium) {
|
|
|
|
sources += [ "//gpu/dawn_end2end_tests_main.cc" ]
|
|
|
|
} else {
|
|
|
|
sources += [ "src/tests/End2EndTestsMain.cpp" ]
|
|
|
|
}
|
2019-08-13 21:45:44 +00:00
|
|
|
|
|
|
|
if (dawn_enable_opengl) {
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
deps += [ ":dawn_glfw" ]
|
2019-08-13 21:45:44 +00:00
|
|
|
}
|
2020-02-20 19:19:13 +00:00
|
|
|
|
|
|
|
if (is_chromeos) {
|
|
|
|
libs += [ "gbm" ]
|
|
|
|
}
|
2018-07-31 16:50:03 +00:00
|
|
|
}
|
2018-08-13 06:23:27 +00:00
|
|
|
|
2019-08-28 23:18:10 +00:00
|
|
|
test("dawn_perf_tests") {
|
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
|
|
|
|
|
|
|
deps = [
|
2019-10-17 19:00:32 +00:00
|
|
|
":dawn_platform",
|
2019-08-28 23:18:10 +00:00
|
|
|
":dawn_utils",
|
|
|
|
":libdawn_native",
|
|
|
|
":libdawn_wire",
|
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2019-08-28 23:18:10 +00:00
|
|
|
"third_party:gmock_and_gtest",
|
|
|
|
]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/tests/DawnTest.cpp",
|
|
|
|
"src/tests/DawnTest.h",
|
|
|
|
"src/tests/ParamGenerator.h",
|
|
|
|
"src/tests/perf_tests/BufferUploadPerf.cpp",
|
|
|
|
"src/tests/perf_tests/DawnPerfTest.cpp",
|
|
|
|
"src/tests/perf_tests/DawnPerfTest.h",
|
2019-10-17 19:00:32 +00:00
|
|
|
"src/tests/perf_tests/DawnPerfTestPlatform.cpp",
|
|
|
|
"src/tests/perf_tests/DawnPerfTestPlatform.h",
|
2019-10-31 03:20:31 +00:00
|
|
|
"src/tests/perf_tests/DrawCallPerf.cpp",
|
2019-08-28 23:18:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
# When building inside Chromium, use their gtest main function because it is
|
|
|
|
# needed to run in swarming correctly.
|
|
|
|
if (build_with_chromium) {
|
|
|
|
sources += [ "//gpu/dawn_perf_tests_main.cc" ]
|
|
|
|
} else {
|
|
|
|
sources += [ "src/tests/PerfTestsMain.cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_metal) {
|
|
|
|
libs += [ "IOSurface.framework" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_opengl) {
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
deps += [ ":dawn_glfw" ]
|
2019-08-28 23:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-10 16:45:24 +00:00
|
|
|
# Temporary groups to make a 5-way patch to fix crbug.com/913171
|
|
|
|
group("dawn_unittests_temp_group") {
|
|
|
|
testonly = true
|
2018-12-12 09:27:16 +00:00
|
|
|
deps = [
|
|
|
|
":dawn_unittests",
|
|
|
|
]
|
2018-12-10 16:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group("dawn_end2end_tests_temp_group") {
|
|
|
|
testonly = true
|
2018-12-12 09:27:16 +00:00
|
|
|
deps = [
|
|
|
|
":dawn_end2end_tests",
|
|
|
|
]
|
2018-12-10 16:45:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-28 23:18:10 +00:00
|
|
|
group("dawn_perf_tests_temp_group") {
|
|
|
|
testonly = true
|
|
|
|
deps = [
|
|
|
|
":dawn_perf_tests",
|
|
|
|
]
|
2019-08-30 19:16:46 +00:00
|
|
|
data_deps = [
|
|
|
|
":dawn_perf_tests",
|
|
|
|
]
|
2019-08-28 23:18:10 +00:00
|
|
|
}
|
|
|
|
|
2018-08-13 06:23:27 +00:00
|
|
|
###############################################################################
|
|
|
|
# Dawn samples, only in standalone builds
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
if (dawn_standalone) {
|
2019-11-19 18:58:50 +00:00
|
|
|
# Library to handle the interaction of Dawn with GLFW windows in samples
|
|
|
|
static_library("dawn_bindings") {
|
|
|
|
configs += [ "${dawn_root}/src/common:dawn_internal" ]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/utils/BackendBinding.cpp",
|
|
|
|
"src/utils/BackendBinding.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
public_deps = [
|
|
|
|
"${dawn_root}/src/dawn:dawn_headers",
|
|
|
|
]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":dawn_glfw",
|
|
|
|
":libdawn_native",
|
|
|
|
"${dawn_root}/src/common",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
sources += [ "src/utils/D3D12Binding.cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_metal) {
|
|
|
|
sources += [ "src/utils/MetalBinding.mm" ]
|
|
|
|
libs += [
|
|
|
|
"Metal.framework",
|
|
|
|
"QuartzCore.framework",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Suppress warnings that Metal isn't in the deployment target of Chrome
|
|
|
|
if (is_mac) {
|
|
|
|
cflags_objcc = [ "-Wno-unguarded-availability" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_null) {
|
|
|
|
sources += [ "src/utils/NullBinding.cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_opengl) {
|
|
|
|
sources += [ "src/utils/OpenGLBinding.cpp" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dawn_enable_vulkan) {
|
|
|
|
sources += [ "src/utils/VulkanBinding.cpp" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-13 06:23:27 +00:00
|
|
|
# Static library to contain code and dependencies common to all samples
|
|
|
|
static_library("dawn_sample_utils") {
|
|
|
|
sources = [
|
|
|
|
"examples/SampleUtils.cpp",
|
|
|
|
"examples/SampleUtils.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Export all of these as public deps so that `gn check` allows includes
|
|
|
|
public_deps = [
|
2019-08-13 21:45:44 +00:00
|
|
|
":dawn_bindings",
|
Enable Vulkan for Chromium Fuchsia build.
Enable the Vulkan backend when building Dawn with
the Chromium build system for Fuchsia. To make this
work properly the following is required:
- Modify VulkanInfo.cpp and BackendVk.cpp to correctly probe
the Fuchsia swapchain layer and its layer extension, as well
as enabling them when creating a new VkInstance.
- Modify VulkanFunctions.cpp to load the Fuchsia swapchain
related extension for this platform only.
- Provide a small mock GLFW library for Fuchsia under
src/utils/Glfw3Fuchsia.cpp, since the upstream project
does not support this platform at all. Its purpose is
only to allow the creation of the right VulkanBinding
instance, which depends on the creation of a display
surface for latter swapchain creation.
- Add //third_party/fuchsia-sdk:vulkan_base and
//third_party/fuchsia-sdk:vulkan_validation as
data_deps of the libdawn_native_sources target in
order to ensure that the Fuchsia package created by
the build system will include the correct Vulkan
libraries (loader and validation layers).
This builds correctly, and both dawn_unittests and
dawn_end2end_tests will run on a real Fuchsia device
or inside the Fuchsia emulator, using either GPU
virtualization or a software-based renderer.
Note: dawn_unittests will also run inside QEMU, but
not dawn_end2end_tests, since the latter requires
proper GPU emulation which is not available in this
environment.
NOTE: All end2end tests pass using a device with
an "Intel HD Graphics 615 (Kaby Lake GT2)"
adapter. However:
- For some reason, a single test takes up
to 129 seconds to pass
(BufferSetSubDataTests.ManySetSubData/Vulkan).
- The test process crashes inside VkDestroyInstance(),
apparently inside the Fuchsia-specific imagepipe
layer (which implements swapchain support).
This is likely a bug in the layer itself, and
not Dawn.
Also, may end2end tests will crash when run inside
the Fuchsia emulator (which uses GPU virtualization
to talk to the host GPU). The crashes happen inside
libvulkan-goldfish.so, the emulator-specific Vulkan
ICD on this sytem. Not a Dawn bug either.
Bug=dawn:221
Change-Id: Id3598b673e8c6393f24db728b8da49fdde3cac76
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/8963
Commit-Queue: David Turner <digit@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2019-09-09 10:52:08 +00:00
|
|
|
":dawn_glfw",
|
2018-08-13 06:23:27 +00:00
|
|
|
":dawn_utils",
|
|
|
|
":libdawn_native",
|
|
|
|
":libdawn_wire",
|
2019-03-07 01:46:39 +00:00
|
|
|
"${dawn_root}/src/common",
|
2019-10-15 11:44:38 +00:00
|
|
|
"${dawn_root}/src/dawn:dawncpp",
|
|
|
|
"${dawn_root}/src/dawn:libdawn_proc",
|
2018-08-13 06:23:27 +00:00
|
|
|
]
|
2019-03-07 01:46:39 +00:00
|
|
|
public_configs = [ "${dawn_root}/src/common:dawn_internal" ]
|
2018-08-13 06:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Template for samples to avoid listing dawn_sample_utils as a dep every time
|
|
|
|
template("dawn_sample") {
|
|
|
|
executable(target_name) {
|
|
|
|
deps = [
|
|
|
|
":dawn_sample_utils",
|
|
|
|
]
|
|
|
|
forward_variables_from(invoker, "*", [ "deps" ])
|
|
|
|
|
|
|
|
if (defined(invoker.deps)) {
|
|
|
|
deps += invoker.deps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dawn_sample("CppHelloTriangle") {
|
|
|
|
sources = [
|
|
|
|
"examples/CppHelloTriangle.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
dawn_sample("CHelloTriangle") {
|
|
|
|
sources = [
|
|
|
|
"examples/CHelloTriangle.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
dawn_sample("ComputeBoids") {
|
|
|
|
sources = [
|
|
|
|
"examples/ComputeBoids.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
"third_party:glm",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
dawn_sample("Animometer") {
|
|
|
|
sources = [
|
|
|
|
"examples/Animometer.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
dawn_sample("CubeReflection") {
|
|
|
|
sources = [
|
|
|
|
"examples/CubeReflection.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
"third_party:glm",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-09-20 21:17:14 +00:00
|
|
|
group("dawn_samples") {
|
|
|
|
deps = [
|
2018-10-04 16:59:05 +00:00
|
|
|
":Animometer",
|
2018-09-20 21:17:14 +00:00
|
|
|
":CHelloTriangle",
|
|
|
|
":ComputeBoids",
|
2018-10-04 16:59:05 +00:00
|
|
|
":CppHelloTriangle",
|
2018-09-20 21:17:14 +00:00
|
|
|
":CubeReflection",
|
|
|
|
]
|
|
|
|
}
|
2018-08-13 06:23:27 +00:00
|
|
|
}
|
Add fuzzers for SPIRV-Cross
This CL adds in fuzzers for SPIRV-Cross for HLSL, GLSL, and MSL
outputs. These fuzzers live in Dawn because there is not appropriate
location in the Chromium source repo for them and it is unlikely they
would be land-able in the SPIRV-Cross repo, because it is not coupled
with Chromium's build system and thus Clusterfuzz so would be
effectively dead code. Dawn depends on this code, but it is also
integrated into the Chromium build system, so this was the best place
I could find for them
The code under fuzz unfortunately uses exceptions/aborting as its
error reporting mechanism. This is an acknowledge short coming and
there are efforts to remove this behaviour. To work around this and
reduce the number of false positives found by the fuzzers, a signal
trap has been implemented which will be removed once the code under
fuzz has been updated.
The trap replaces the existing signal handler and silencing signals
while running the code under test. This allows the code under test to
call abort() and not crash the fuzzing process. Theoretically, only
SIGABRT should need to be trapped, but something is causing the signal
from abort() to be converted to SIGSEGV when running under ASAN.
This signal trap has been tested with the fuzzing/sanitizers by
intentionally inserting bad calls that will occur after a few thousand
test cases. It was confirmed that the fuzzer detected the issue and
stops fuzzing.
The alternate to implementing this signal trap would be to turn on
exceptions for the fuzzer. This was attempted, but proved to be
fruitless due to what was reported as an ODR issue, but couldn't
couldn't be silenced. The likely underlying issue was a pre-built
library or other object being built without exceptions was causing
different versions of symbols or the exception version of the standard
library not being instrumented by ASAN. Given the majority of Chromium
eco-system turns off exceptions, fixing this issue would not be
helpful to the larger community and was looking like it would require
significant effort.
BUG=chromium:903380
Change-Id: I63a5595383f99b7a0e150d72bb04c89b8d722631
Reviewed-on: https://dawn-review.googlesource.com/c/2260
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Max Moroz <mmoroz@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
2018-11-12 12:20:21 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Fuzzers
|
|
|
|
###############################################################################
|
|
|
|
|
2018-11-12 18:09:56 +00:00
|
|
|
group("dawn_fuzzers") {
|
|
|
|
testonly = true
|
|
|
|
deps = [
|
2019-11-27 20:56:14 +00:00
|
|
|
"src/fuzzers:dawn_spirv_cross_glsl_fast_fuzzer",
|
|
|
|
"src/fuzzers:dawn_spirv_cross_hlsl_fast_fuzzer",
|
|
|
|
"src/fuzzers:dawn_spirv_cross_msl_fast_fuzzer",
|
2019-12-11 19:03:01 +00:00
|
|
|
"src/fuzzers:dawn_spvc_glsl_fast_fuzzer",
|
|
|
|
"src/fuzzers:dawn_spvc_hlsl_fast_fuzzer",
|
|
|
|
"src/fuzzers:dawn_spvc_msl_fast_fuzzer",
|
2018-11-12 18:09:56 +00:00
|
|
|
"src/fuzzers:dawn_wire_server_and_frontend_fuzzer",
|
|
|
|
]
|
Add fuzzers for SPIRV-Cross
This CL adds in fuzzers for SPIRV-Cross for HLSL, GLSL, and MSL
outputs. These fuzzers live in Dawn because there is not appropriate
location in the Chromium source repo for them and it is unlikely they
would be land-able in the SPIRV-Cross repo, because it is not coupled
with Chromium's build system and thus Clusterfuzz so would be
effectively dead code. Dawn depends on this code, but it is also
integrated into the Chromium build system, so this was the best place
I could find for them
The code under fuzz unfortunately uses exceptions/aborting as its
error reporting mechanism. This is an acknowledge short coming and
there are efforts to remove this behaviour. To work around this and
reduce the number of false positives found by the fuzzers, a signal
trap has been implemented which will be removed once the code under
fuzz has been updated.
The trap replaces the existing signal handler and silencing signals
while running the code under test. This allows the code under test to
call abort() and not crash the fuzzing process. Theoretically, only
SIGABRT should need to be trapped, but something is causing the signal
from abort() to be converted to SIGSEGV when running under ASAN.
This signal trap has been tested with the fuzzing/sanitizers by
intentionally inserting bad calls that will occur after a few thousand
test cases. It was confirmed that the fuzzer detected the issue and
stops fuzzing.
The alternate to implementing this signal trap would be to turn on
exceptions for the fuzzer. This was attempted, but proved to be
fruitless due to what was reported as an ODR issue, but couldn't
couldn't be silenced. The likely underlying issue was a pre-built
library or other object being built without exceptions was causing
different versions of symbols or the exception version of the standard
library not being instrumented by ASAN. Given the majority of Chromium
eco-system turns off exceptions, fixing this issue would not be
helpful to the larger community and was looking like it would require
significant effort.
BUG=chromium:903380
Change-Id: I63a5595383f99b7a0e150d72bb04c89b8d722631
Reviewed-on: https://dawn-review.googlesource.com/c/2260
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Max Moroz <mmoroz@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
2018-11-12 12:20:21 +00:00
|
|
|
}
|