OLD | NEW |
(Empty) | |
| 1 # -*- python -*- |
| 2 # Copyright 2011 (c) 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 'includes': [ |
| 7 '../../../build/common.gypi', |
| 8 ], |
| 9 'target_defaults': { |
| 10 'variables':{ |
| 11 'target_base': 'none', |
| 12 }, |
| 13 'target_conditions': [ |
| 14 ['target_base=="manifest_proxy"', { |
| 15 'sources': [ |
| 16 'manifest_proxy.h', |
| 17 'manifest_proxy.c', |
| 18 ], |
| 19 'xcode_settings': { |
| 20 'WARNING_CFLAGS': [ |
| 21 '-Wno-missing-field-initializers' |
| 22 ] |
| 23 }, |
| 24 }, |
| 25 ]], |
| 26 }, |
| 27 'conditions': [ |
| 28 ['OS=="win"', { |
| 29 'targets': [ |
| 30 { |
| 31 'target_name': 'manifest_proxy64', |
| 32 'type': 'static_library', |
| 33 'variables': { |
| 34 'target_base': 'manifest_proxy', |
| 35 }, |
| 36 'configurations': { |
| 37 'Common_Base': { |
| 38 'msvs_target_platform': 'x64', |
| 39 }, |
| 40 }, |
| 41 'dependencies': [ |
| 42 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
| 43 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64', |
| 44 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i
nterface64', |
| 45 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', |
| 46 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas
e64', |
| 47 ], |
| 48 }, |
| 49 ], |
| 50 }], |
| 51 ], |
| 52 'targets': [ |
| 53 { |
| 54 'target_name': 'manifest_proxy', |
| 55 'type': 'static_library', |
| 56 'variables': { |
| 57 'target_base': 'manifest_proxy', |
| 58 }, |
| 59 'dependencies': [ |
| 60 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 61 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', |
| 62 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter
face', |
| 63 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', |
| 64 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base', |
| 65 ], |
| 66 }, |
| 67 ], |
| 68 } |
OLD | NEW |