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.
|
|
|
|
|
2019-02-13 18:42:38 +00:00
|
|
|
import("scripts/dawn_overrides_with_defaults.gni")
|
2018-12-08 10:35:53 +00:00
|
|
|
|
2020-04-10 08:20:10 +00:00
|
|
|
group("all") {
|
|
|
|
testonly = true
|
2020-01-15 13:14:12 +00:00
|
|
|
deps = [
|
2022-02-04 18:48:05 +00:00
|
|
|
"src/dawn/fuzzers",
|
2022-02-04 17:07:46 +00:00
|
|
|
"src/dawn/native:webgpu_dawn",
|
2022-02-09 14:54:31 +00:00
|
|
|
"src/dawn/tests",
|
2022-02-01 16:45:12 +00:00
|
|
|
"src/fuzzers/dawn:dawn_fuzzers",
|
2022-04-06 19:37:27 +00:00
|
|
|
"src/tint:libtint",
|
2022-04-07 11:36:06 +00:00
|
|
|
"src/tint/fuzzers",
|
2022-02-21 15:19:07 +00:00
|
|
|
"test/tint:tint_unittests",
|
2020-01-15 13:14:12 +00:00
|
|
|
]
|
2020-04-10 08:20:10 +00:00
|
|
|
if (dawn_standalone) {
|
2022-04-06 19:37:27 +00:00
|
|
|
deps += [
|
2022-04-11 16:40:00 +00:00
|
|
|
"src/dawn/samples",
|
2022-04-06 19:37:27 +00:00
|
|
|
"src/tint/cmd:tint",
|
|
|
|
]
|
2020-01-15 13:14:12 +00:00
|
|
|
}
|
2019-08-13 21:45:44 +00:00
|
|
|
}
|
2021-02-02 17:03:30 +00:00
|
|
|
|
|
|
|
# This target is built when no specific target is specified on the command line.
|
|
|
|
group("default") {
|
|
|
|
testonly = true
|
|
|
|
deps = [ ":all" ]
|
|
|
|
}
|