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 = [ |
Ben Clayton | c6ccd53 | 2022-02-04 18:48:05 +0000 | [diff] [blame] | 20 | "src/dawn/fuzzers", |
Ben Clayton | 818001d | 2022-02-04 17:07:46 +0000 | [diff] [blame] | 21 | "src/dawn/native:webgpu_dawn", |
Austin Eng | 189b0ce | 2022-02-09 14:54:31 +0000 | [diff] [blame] | 22 | "src/dawn/tests", |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 23 | "src/tint:libtint", |
dan sinclair | 889a499 | 2022-06-17 13:01:59 +0000 | [diff] [blame] | 24 | "src/tint:tint_unittests", |
Corentin Wallez | b28d6c8 | 2022-04-07 11:36:06 +0000 | [diff] [blame] | 25 | "src/tint/fuzzers", |
Corentin Wallez | b31015b | 2020-04-10 08:20:10 +0000 | [diff] [blame] | 26 | ] |
| 27 | if (dawn_standalone) { |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 28 | deps += [ |
Corentin Wallez | 6efd54e | 2022-04-11 16:40:00 +0000 | [diff] [blame] | 29 | "src/dawn/samples", |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 30 | "src/tint/cmd:tint", |
| 31 | ] |
Corentin Wallez | b31015b | 2020-04-10 08:20:10 +0000 | [diff] [blame] | 32 | } |
| 33 | } |
Nicolas Capens | dd988bc | 2021-02-02 17:03:30 +0000 | [diff] [blame] | 34 | |
| 35 | # This target is built when no specific target is specified on the command line. |
| 36 | group("default") { |
| 37 | testonly = true |
| 38 | deps = [ ":all" ] |
| 39 | } |