mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 19:31:25 +00:00
Allows the new transformation-based fuzzers to be built using gn, so that they can be deployed on ClusterFuzz. Fixes: tint:1002 Fixes: tint:1006 Change-Id: Ib9624e507e40836541eb424e710705345a198db1 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/58387 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Vasyl Teliman <vasniktel@gmail.com> Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
# Copyright 2021 The Tint 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.
|
|
|
|
import("//build_overrides/build.gni")
|
|
import("../../tint_overrides_with_defaults.gni")
|
|
|
|
if (build_with_chromium) {
|
|
source_set("tint_spirv_tools_fuzzer") {
|
|
public_configs = [
|
|
"${tint_root_dir}/src:tint_config",
|
|
"${tint_root_dir}/src:tint_common_config",
|
|
]
|
|
|
|
include_dirs = [ "${root_gen_dir}/third_party/vulkan-deps/spirv-tools/src" ]
|
|
|
|
deps = [
|
|
"${tint_root_dir}/fuzzers:tint_fuzzer_common",
|
|
"${tint_spirv_tools_dir}/:spvtools_fuzz",
|
|
"${tint_spirv_tools_dir}/:spvtools_opt",
|
|
"${tint_spirv_tools_dir}/:spvtools_reduce",
|
|
"//third_party/protobuf:protobuf_full",
|
|
]
|
|
|
|
sources = [
|
|
"cli.cc",
|
|
"cli.h",
|
|
"fuzzer.cc",
|
|
"mutator.cc",
|
|
"mutator.h",
|
|
"mutator_cache.cc",
|
|
"mutator_cache.h",
|
|
"spirv_fuzz_mutator.cc",
|
|
"spirv_fuzz_mutator.h",
|
|
"spirv_opt_mutator.cc",
|
|
"spirv_opt_mutator.h",
|
|
"spirv_reduce_mutator.cc",
|
|
"spirv_reduce_mutator.h",
|
|
"util.cc",
|
|
"util.h",
|
|
]
|
|
}
|
|
}
|