Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 1 | # 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 Ikuta | 0e6dad0 | 2019-02-13 18:42:38 +0000 | [diff] [blame] | 15 | import("scripts/dawn_overrides_with_defaults.gni") |
Corentin Wallez | 48a1923 | 2018-12-08 10:35:53 +0000 | [diff] [blame] | 16 | |
Corentin Wallez | b31015b | 2020-04-10 08:20:10 +0000 | [diff] [blame] | 17 | group("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 Capens | dd988bc | 2021-02-02 17:03:30 +0000 | [diff] [blame] | 27 | |
| 28 | # This target is built when no specific target is specified on the command line. |
| 29 | group("default") { |
| 30 | testonly = true |
| 31 | deps = [ ":all" ] |
| 32 | } |