Commit 94e76f4e authored by Corentin Wallez's avatar Corentin Wallez Committed by Commit Bot

gpu/BUILD.gn: use the more detail dawn targets.

libdawn is deprecated and was split in libdawn_proc and dawncpp so each
could be used separately. Make Chromium use the split targets so the
temporary libdawn group used for backwards compatibility can be removed.

BUG=dawn:22

Change-Id: I2db79b5b14c12b10111bd03bf66ca2692c07c200
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1869209Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#707937}
parent f01d8fd8
...@@ -393,10 +393,6 @@ test("gl_tests") { ...@@ -393,10 +393,6 @@ test("gl_tests") {
deps += [ "//ui/ozone" ] deps += [ "//ui/ozone" ]
} }
if (use_dawn) {
deps += [ "//third_party/dawn/src/dawn:libdawn" ]
}
libs = [] libs = []
if (is_android) { if (is_android) {
...@@ -419,7 +415,8 @@ test("gl_tests") { ...@@ -419,7 +415,8 @@ test("gl_tests") {
if (use_dawn) { if (use_dawn) {
deps += [ deps += [
"//third_party/dawn:libdawn_native", "//third_party/dawn:libdawn_native",
"//third_party/dawn/src/dawn:libdawn", "//third_party/dawn/src/dawn:libdawn_proc",
"//third_party/dawn/src/dawn:dawncpp",
] ]
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment