| Index: ppapi/native_client/BUILD.gn
|
| diff --git a/ppapi/native_client/BUILD.gn b/ppapi/native_client/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b67b0525b8222c5625ca14d3557d2d101b4f3567
|
| --- /dev/null
|
| +++ b/ppapi/native_client/BUILD.gn
|
| @@ -0,0 +1,38 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//build/config/features.gni")
|
| +
|
| +if (enable_nacl && enable_nacl_untrusted) {
|
| + group("ppapi_lib") {
|
| + deps = [
|
| + "//native_client/src/untrusted/pthread",
|
| + "//ppapi/native_client/src/untrusted/irt_stub:ppapi_stub_lib",
|
| + ]
|
| + }
|
| +
|
| + executable("nacl_irt") {
|
| + deps = [
|
| + "//base",
|
| + "//components/tracing",
|
| + "//gpu/command_buffer/client",
|
| + "//gpu/command_buffer/common",
|
| + "//gpu/command_buffer/client:gles2_implementation",
|
| + "//gpu/ipc",
|
| + "//ipc",
|
| + "//media:shared_memory_support",
|
| + "//mojo/nacl:irt_mojo_sources",
|
| + "//native_client/src/untrusted/irt:irt_core_lib",
|
| + "//native_client/src/shared/srpc",
|
| + "//native_client/src/shared/platform",
|
| + "//native_client/src/tools/tls_edit($host_toolchain)",
|
| + "//native_client/src/untrusted/nacl:imc_syscalls",
|
| + "//native_client/src/shared/gio",
|
| + "//ppai/native_client/src/untrusted/pnacl_irt_shim:irt",
|
| + "//ppapi/proxy",
|
| + "//ppapi/proxy:ipc",
|
| + "//ppapi/shared_impl",
|
| + ]
|
| + }
|
| +}
|
|
|