Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(771)

Unified Diff: mojo/public/c/gpu/BUILD.gn

Issue 1413683003: Expose MGL interface through NaCl IRT (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Review feedback addressed Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/c/gpu/BUILD.gn
diff --git a/mojo/public/c/gpu/BUILD.gn b/mojo/public/c/gpu/BUILD.gn
index 9642c197d735f6c90a5122a9a0e681bd2276a627..4b578fcab19fb9d2e41dab054bf2c3084425c6ee 100644
--- a/mojo/public/c/gpu/BUILD.gn
+++ b/mojo/public/c/gpu/BUILD.gn
@@ -16,9 +16,11 @@ group("gpu") {
":MGL",
":MGL_signal_sync_point",
":GLES2",
- "../../platform/native:mgl_thunks",
"../../platform/native:gles2",
]
+ if (!is_nacl) {
+ deps += [ "../../platform/native:mgl_thunks" ]
+ }
}
group("gpu_onscreen") {
@@ -28,8 +30,10 @@ group("gpu_onscreen") {
deps = [
":gpu",
- "../../platform/native:mgl_onscreen_thunks",
]
+ if (!is_nacl) {
+ deps += [ "../../platform/native:mgl_onscreen_thunks" ]
+ }
}
mojo_sdk_source_set("MGL") {

Powered by Google App Engine
This is Rietveld 408576698