blob: 7502fb75a977554211b9f7ef480390077791c463 [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",
Ben Clayton1a4185b2022-02-01 16:45:12 +000023 "src/fuzzers/dawn:dawn_fuzzers",
Ryan Harrisone87ac762022-04-06 15:37:27 -040024 "src/tint:libtint",
Corentin Wallezb28d6c82022-04-07 11:36:06 +000025 "src/tint/fuzzers",
Ryan Harrisone87ac762022-04-06 15:37:27 -040026 "test/tint:tint_unittests",
Corentin Wallezb31015b2020-04-10 08:20:10 +000027 ]
28 if (dawn_standalone) {
Ryan Harrisone87ac762022-04-06 15:37:27 -040029 deps += [
Corentin Wallez6efd54e2022-04-11 16:40:00 +000030 "src/dawn/samples",
Ryan Harrisone87ac762022-04-06 15:37:27 -040031 "src/tint/cmd:tint",
32 ]
Corentin Wallezb31015b2020-04-10 08:20:10 +000033 }
34}
Nicolas Capensdd988bc2021-02-02 17:03:30 +000035
36# This target is built when no specific target is specified on the command line.
37group("default") {
38 testonly = true
39 deps = [ ":all" ]
40}