OLD | NEW |
1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. | 1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 static_library("nonnacl_srpc") { | 5 static_library("nonnacl_srpc") { |
6 deps = [ | 6 deps = [ |
7 "//native_client/build/config/nacl:nacl_base", | 7 "//native_client/build/config/nacl:nacl_base", |
8 ] | 8 ] |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 19 matching lines...) Expand all Loading... |
30 "//native_client/src/untrusted/nacl:imc_syscalls", | 30 "//native_client/src/untrusted/nacl:imc_syscalls", |
31 ] | 31 ] |
32 | 32 |
33 sources = [ | 33 sources = [ |
34 "accept.c", | 34 "accept.c", |
35 "accept_threaded.c", | 35 "accept_threaded.c", |
36 "invoke.c", | 36 "invoke.c", |
37 "module_init_fini.c", | 37 "module_init_fini.c", |
38 "nacl_srpc.c", | 38 "nacl_srpc.c", |
39 "nacl_srpc_message.c", | 39 "nacl_srpc_message.c", |
40 "nacl_srpc_ppapi_plugin_init.c", | |
41 "nacl_srpc_ppapi_plugin_internal.c", | |
42 "rpc_log.c", | 40 "rpc_log.c", |
43 "rpc_serialize.c", | 41 "rpc_serialize.c", |
44 "rpc_server_loop.c", | 42 "rpc_server_loop.c", |
45 "rpc_service.c", | 43 "rpc_service.c", |
46 ] | 44 ] |
47 | 45 |
48 cflags_c = [ | 46 cflags_c = [ |
49 "-fno-strict-aliasing", | 47 "-fno-strict-aliasing", |
50 ] | 48 ] |
51 } | 49 } |
52 } | 50 } |
OLD | NEW |