| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'invoke.c', | 59 'invoke.c', |
| 60 'module_init_fini.c', | 60 'module_init_fini.c', |
| 61 'nacl_srpc.c', | 61 'nacl_srpc.c', |
| 62 'nacl_srpc_message.c', | 62 'nacl_srpc_message.c', |
| 63 'rpc_log.c', | 63 'rpc_log.c', |
| 64 'rpc_serialize.c', | 64 'rpc_serialize.c', |
| 65 'rpc_service.c', | 65 'rpc_service.c', |
| 66 'rpc_server_loop.c', | 66 'rpc_server_loop.c', |
| 67 'accept.c', | 67 'accept.c', |
| 68 'accept_threaded.c', | 68 'accept_threaded.c', |
| 69 'nacl_srpc_ppapi_plugin_init.c', | |
| 70 'nacl_srpc_ppapi_plugin_internal.c' | |
| 71 ], | 69 ], |
| 72 }, | 70 }, |
| 73 'dependencies': [ | 71 'dependencies': [ |
| 74 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 72 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 75 ], | 73 ], |
| 76 }, | 74 }, |
| 77 ], | 75 ], |
| 78 'conditions': [ | 76 'conditions': [ |
| 79 ['OS=="win" and target_arch=="ia32"', { | 77 ['OS=="win" and target_arch=="ia32"', { |
| 80 'targets': [ | 78 'targets': [ |
| 81 { | 79 { |
| 82 'target_name': 'nonnacl_srpc64', | 80 'target_name': 'nonnacl_srpc64', |
| 83 'type': 'static_library', | 81 'type': 'static_library', |
| 84 'variables': { | 82 'variables': { |
| 85 'target_base': 'srpc', | 83 'target_base': 'srpc', |
| 86 'win_target': 'x64', | 84 'win_target': 'x64', |
| 87 }, | 85 }, |
| 88 } | 86 } |
| 89 ], | 87 ], |
| 90 }], | 88 }], |
| 91 ] | 89 ] |
| 92 } | 90 } |
| OLD | NEW |