| OLD | NEW |
| 1 # Copyright (c) 2008 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2008 The Native Client Authors. 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../../../build/common.gypi', | 7 '../../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'type': 'static_library', | 43 'type': 'static_library', |
| 44 'variables': { | 44 'variables': { |
| 45 'target_base': 'srpc', | 45 'target_base': 'srpc', |
| 46 }, | 46 }, |
| 47 }, | 47 }, |
| 48 { | 48 { |
| 49 'target_name': 'srpc_lib', | 49 'target_name': 'srpc_lib', |
| 50 'type': 'none', | 50 'type': 'none', |
| 51 'variables': { | 51 'variables': { |
| 52 'nlib_target': 'libsrpc.a', | 52 'nlib_target': 'libsrpc.a', |
| 53 'nso_target': 'libsrpc.so', |
| 53 'build_glibc': 1, | 54 'build_glibc': 1, |
| 54 'build_newlib': 1, | 55 'build_newlib': 1, |
| 55 'sources': [ | 56 'sources': [ |
| 56 'invoke.c', | 57 'invoke.c', |
| 57 'module_init_fini.c', | 58 'module_init_fini.c', |
| 58 'nacl_srpc.c', | 59 'nacl_srpc.c', |
| 59 'nacl_srpc_message.c', | 60 'nacl_srpc_message.c', |
| 60 'rpc_log.c', | 61 'rpc_log.c', |
| 61 'rpc_serialize.c', | 62 'rpc_serialize.c', |
| 62 'rpc_service.c', | 63 'rpc_service.c', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 80 'type': 'static_library', | 81 'type': 'static_library', |
| 81 'variables': { | 82 'variables': { |
| 82 'target_base': 'srpc', | 83 'target_base': 'srpc', |
| 83 'win_target': 'x64', | 84 'win_target': 'x64', |
| 84 }, | 85 }, |
| 85 } | 86 } |
| 86 ], | 87 ], |
| 87 }], | 88 }], |
| 88 ] | 89 ] |
| 89 } | 90 } |
| OLD | NEW |