blob: f8c951333a239cbdcd2424d84ce3f6a90f025dfa [file] [log] [blame]
Corentin Wallez21a23852018-07-31 18:50:03 +02001# Copyright 2018 The Dawn Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Takuto Ikuta0e6dad02019-02-13 18:42:38 +000015import("scripts/dawn_overrides_with_defaults.gni")
Corentin Wallez48a19232018-12-08 10:35:53 +000016
Corentin Wallezb31015b2020-04-10 08:20:10 +000017group("all") {
18 testonly = true
19 deps = [
Ben Claytonc6ccd532022-02-04 18:48:05 +000020 "src/dawn/fuzzers",
Ben Clayton818001d2022-02-04 17:07:46 +000021 "src/dawn/native:webgpu_dawn",
Austin Eng189b0ce2022-02-09 14:54:31 +000022 "src/dawn/tests",
Ryan Harrisone87ac762022-04-06 15:37:27 -040023 "src/tint:libtint",
dan sinclair889a4992022-06-17 13:01:59 +000024 "src/tint:tint_unittests",
Corentin Wallezb28d6c82022-04-07 11:36:06 +000025 "src/tint/fuzzers",
Corentin Wallezb31015b2020-04-10 08:20:10 +000026 ]
27 if (dawn_standalone) {
Ryan Harrisone87ac762022-04-06 15:37:27 -040028 deps += [
Corentin Wallez6efd54e2022-04-11 16:40:00 +000029 "src/dawn/samples",
Ryan Harrisone87ac762022-04-06 15:37:27 -040030 "src/tint/cmd:tint",
31 ]
Corentin Wallezb31015b2020-04-10 08:20:10 +000032 }
33}
Nicolas Capensdd988bc2021-02-02 17:03:30 +000034
35# This target is built when no specific target is specified on the command line.
36group("default") {
37 testonly = true
38 deps = [ ":all" ]
39}