OLD | NEW |
---|---|
(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", | |
Nick Bray (chromium)
2015/02/25 22:52:40
Wat? Why no abspath? (And below.)
Dirk Pranke
2015/02/25 23:23:40
Done.
| |
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 "//mojo/nacl:irt_mojo_sources", | |
27 "//native_client/src/untrusted/irt:irt_core_lib", | |
28 "//native_client/src/shared/srpc", | |
29 "//native_client/src/shared/platform", | |
30 "//native_client/src/tools/tls_edit($host_toolchain)", | |
31 "//native_client/src/untrusted/nacl:imc_syscalls", | |
32 "//native_client/src/shared/gio", | |
33 "//ppapi/proxy", | |
34 "//ppapi/proxy:ipc", | |
35 "//ppapi/shared_impl", | |
36 ] | |
37 } | |
38 } | |
OLD | NEW |