| OLD | NEW |
| (Empty) |
| 1 # -*- python -*- | |
| 2 # Copyright 2010 The Native Client Authors. All rights reserved. Use | |
| 3 # of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 { | |
| 7 'variables': { | |
| 8 'conditions': [ | |
| 9 ['OS=="win"', { | |
| 10 'msvs_cygwin_shell': 0, | |
| 11 }], | |
| 12 ], | |
| 13 }, | |
| 14 'includes': [ | |
| 15 '../../../build/common.gypi', | |
| 16 ], | |
| 17 'target_defaults': { | |
| 18 'variables': { | |
| 19 'target_base': 'none', | |
| 20 }, | |
| 21 'target_conditions': [ | |
| 22 ['OS=="mac"', { | |
| 23 'xcode_settings': { | |
| 24 'GCC_ENABLE_CPP_RTTI': 'YES', # override -fno-rtti | |
| 25 }, | |
| 26 }], | |
| 27 ], | |
| 28 'cflags_cc!': ['-fno-rtti'], | |
| 29 }, | |
| 30 'targets': [ | |
| 31 { | |
| 32 'target_name': 'gio_shm_test', | |
| 33 'type': 'executable', | |
| 34 'dependencies': [ | |
| 35 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | |
| 36 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c', | |
| 37 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | |
| 38 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | |
| 39 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | |
| 40 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped
_desc', | |
| 41 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac
l_util', | |
| 42 ], | |
| 43 'sources': [ | |
| 44 'gio_shm_test.c', | |
| 45 ], | |
| 46 }, | |
| 47 { | |
| 48 'target_name': 'gio_shm_unbounded_test', | |
| 49 'type': 'executable', | |
| 50 'dependencies': [ | |
| 51 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | |
| 52 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c', | |
| 53 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | |
| 54 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | |
| 55 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | |
| 56 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped
_desc', | |
| 57 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac
l_util', | |
| 58 ], | |
| 59 'sources': [ | |
| 60 'gio_shm_unbounded_test.c', | |
| 61 ], | |
| 62 }, | |
| 63 { | |
| 64 'target_name': 'gio_nacl_desc_test', | |
| 65 'type': 'executable', | |
| 66 'dependencies': [ | |
| 67 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | |
| 68 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c', | |
| 69 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | |
| 70 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | |
| 71 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | |
| 72 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped
_desc', | |
| 73 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac
l_util', | |
| 74 ], | |
| 75 'sources': [ | |
| 76 'gio_nacl_desc_test.c', | |
| 77 ], | |
| 78 }, | |
| 79 ], | |
| 80 } | |
| OLD | NEW |