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" and target_arch=="ia32"', { | |
29 'targets': [ | |
30 { | |
31 'target_name': 'manifest_proxy64', | |
32 'type': 'static_library', | |
33 'variables': { | |
34 'target_base': 'manifest_proxy', | |
35 'win_target': 'x64', | |
36 }, | |
37 'dependencies': [ | |
38 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | |
39 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64', | |
40 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i
nterface64', | |
41 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', | |
42 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas
e64', | |
43 ], | |
44 }, | |
45 ], | |
46 }], | |
47 ], | |
48 'targets': [ | |
49 { | |
50 'target_name': 'manifest_proxy', | |
51 'type': 'static_library', | |
52 'variables': { | |
53 'target_base': 'manifest_proxy', | |
54 }, | |
55 'dependencies': [ | |
56 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | |
57 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | |
58 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter
face', | |
59 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | |
60 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base', | |
61 ], | |
62 }, | |
63 ], | |
64 } | |
OLD | NEW |