OLD | NEW |
---|---|
(Empty) | |
1 import("//components/nacl/nacl_defines.gni") | |
brettw
2015/02/05 00:20:36
Ditto
| |
2 | |
3 static_library("nacl_trusted_plugin") { | |
4 sources = [ | |
5 "module_ppapi.cc", | |
6 "nacl_subprocess.cc", | |
7 "plugin.cc", | |
8 "pnacl_coordinator.cc", | |
9 "pnacl_resources.cc", | |
10 "pnacl_translate_thread.cc", | |
11 "ppapi_entrypoints.cc", | |
12 "sel_ldr_launcher_chrome.cc", | |
13 "service_runtime.cc", | |
14 "srpc_client.cc", | |
15 "srpc_params.cc", | |
16 "temporary_file.cc", | |
17 "utility.cc", | |
18 ] | |
19 | |
20 configs += [ "//native_client/build/config/nacl:nacl_defines" ] | |
Nick Bray (chromium)
2015/02/05 23:21:46
A third way to get the defines? You have the chro
Dirk Pranke
2015/02/05 23:52:19
Good question. Will fix one way or another.
| |
21 | |
22 deps = [ | |
23 "//media:shared_memory_support", | |
24 "//native_client/src/shared/gio", | |
25 "//native_client/src/shared/imc", | |
26 "//native_client/src/shared/platform", | |
27 "//native_client/src/trusted/desc:nrd_xfer", | |
28 "//native_client/src/trusted/nonnacl_util:sel_ldr_launcher_base", | |
29 "//native_client/src/trusted/platform_qualify:platform_qual_lib", | |
30 "//native_client/src/trusted/simple_service", | |
31 "//native_client/src/trusted/reverse_service", | |
32 "//native_client/src/trusted/weak_ref", | |
33 "//ppapi:ppapi_cpp_objects", | |
34 "//ppapi:ppapi_internal_module", | |
35 ] | |
36 | |
37 if (is_linux) { | |
38 cflags = [ "-Wno-long-long" ] | |
39 | |
40 ldflags = [ "-Wl,-z,defs" ] | |
41 | |
42 libs = [ "dl" ] | |
43 } | |
44 } | |
OLD | NEW |