blob: dbc98e9103a75f804a1b90a506ad2244e42ee403 [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 = [
20 "src/fuzzers:dawn_fuzzers",
21 "src/tests:dawn_tests",
22 ]
23 if (dawn_standalone) {
24 deps += [ "examples:dawn_samples" ]
25 }
26}
Nicolas Capensdd988bc2021-02-02 17:03:30 +000027
28# This target is built when no specific target is specified on the command line.
29group("default") {
30 testonly = true
31 deps = [ ":all" ]
32}