BUILD.gn: Add temporary proxy groups for test targets

This will allow use to update gn_isolate_map_pyl to point to the groups
instead of the targets, while we move the actual targets in a different
file.

BUG=chromium:913171

Change-Id: Ic681fb12d9cbc99557b742784f5b1bf779b76ed1
Reviewed-on: https://dawn-review.googlesource.com/c/3100
Reviewed-by: Stephen White <senorblanco@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2018-12-10 16:45:24 +00:00 committed by Commit Bot service account
parent c3ecb5a77c
commit 07df605a2b
1 changed files with 11 additions and 0 deletions

View File

@ -903,6 +903,17 @@ test("dawn_end2end_tests") {
} }
} }
# Temporary groups to make a 5-way patch to fix crbug.com/913171
group("dawn_unittests_temp_group") {
testonly = true
deps = [ ":dawn_unittests" ]
}
group("dawn_end2end_tests_temp_group") {
testonly = true
deps = [ ":dawn_end2end_tests" ]
}
############################################################################### ###############################################################################
# Dawn samples, only in standalone builds # Dawn samples, only in standalone builds
############################################################################### ###############################################################################