| 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") {
|
|
|