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

Side by Side Diff: ppapi/native_client/BUILD.gn

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update w/ review feedback from ncbray Created 5 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6
7 if (enable_nacl && enable_nacl_untrusted) {
8 group("ppapi_lib") {
9 deps = [
10 "src/untrusted/irt_stub:ppapi_stub_lib",
11 "//native_client/src/untrusted/pthread",
12 ]
13 }
14
15 executable("nacl_irt") {
16 deps = [
17 "src/untrusted/pnacl_irt_shim:irt",
18 "//base",
19 "//components/tracing",
20 "//gpu/command_buffer/client",
21 "//gpu/command_buffer/common",
22 "//gpu/command_buffer/client:gles2_implementation",
23 "//gpu/ipc",
24 "//ipc",
25 "//media:shared_memory_support",
26 "//native_client/src/untrusted/irt:irt_core_lib",
27 "//native_client/src/shared/srpc",
28 "//native_client/src/shared/platform",
29 "//native_client/src/tools/tls_edit($host_toolchain)",
30 "//native_client/src/untrusted/nacl:imc_syscalls",
31 "//native_client/src/shared/gio",
32 "//ppapi:ppapi_ipc",
33 "//ppapi:ppapi_proxy",
34 "//ppapi:ppapi_shared",
35 ]
36 }
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698