OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use | 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 | 3 # of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
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 25 matching lines...) Expand all Loading... |
36 'target_base': 'reverse_service', | 36 'target_base': 'reverse_service', |
37 'win_target': 'x64', | 37 'win_target': 'x64', |
38 }, | 38 }, |
39 'dependencies': [ | 39 'dependencies': [ |
40 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | 40 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
41 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64', | 41 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64', |
42 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i
nterface64', | 42 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i
nterface64', |
43 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:desc_wrapper64', | 43 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:desc_wrapper64', |
44 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', | 44 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64', |
45 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas
e64', | 45 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas
e64', |
| 46 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validati
on_cache64', |
46 ], | 47 ], |
47 }, | 48 }, |
48 ], | 49 ], |
49 }], | 50 }], |
50 ], | 51 ], |
51 'targets': [ | 52 'targets': [ |
52 { | 53 { |
53 'target_name': 'reverse_service', | 54 'target_name': 'reverse_service', |
54 'type': 'static_library', # 'dynamic_library', ?!? | 55 'type': 'static_library', # 'dynamic_library', ?!? |
55 'variables': { | 56 'variables': { |
56 'target_base': 'reverse_service', | 57 'target_base': 'reverse_service', |
57 }, | 58 }, |
58 'dependencies': [ | 59 'dependencies': [ |
59 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 60 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
60 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', | 61 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', |
61 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter
face', | 62 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter
face', |
62 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:desc_wrapper', | 63 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:desc_wrapper', |
63 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', | 64 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', |
64 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base', | 65 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base', |
65 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si
mple_service' | 66 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si
mple_service', |
| 67 '<(DEPTH)/native_client/src/trusted/validator/validator.gyp:validation_c
ache', |
66 ], | 68 ], |
67 }, | 69 }, |
68 ], | 70 ], |
69 } | 71 } |
OLD | NEW |