OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium 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 'include': [ | 6 'include': [ |
7 '../native_client/build/untrusted.gypi', | 7 '../native_client/build/untrusted.gypi', |
8 ], | 8 ], |
9 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
11 'nacl_target': 0, | 11 'nacl_target': 0, |
12 }, | 12 }, |
13 'target_conditions': [ | 13 'target_conditions': [ |
14 # This part is shared between the targets defined below. Only files and | 14 # This part is shared between the targets defined below. Only files and |
15 # settings relevant for building the Win64 target should be added here. | 15 # settings relevant for building the Win64 target should be added here. |
16 ['nacl_target==1', { | 16 ['nacl_target==1', { |
17 'include_dirs': [ | 17 'include_dirs': [ |
18 '<(INTERMEDIATE_DIR)', | 18 '<(INTERMEDIATE_DIR)', |
19 ], | 19 ], |
20 'defines': [ | 20 'defines': [ |
21 '<@(nacl_defines)', | 21 '<@(nacl_defines)', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 # .cc, .h, and .mm files under nacl that are used on all | 24 # .cc, .h, and .mm files under nacl that are used on all |
25 # platforms, including both 32-bit and 64-bit Windows. | 25 # platforms, including both 32-bit and 64-bit Windows. |
26 # Test files are also not included. | 26 # Test files are also not included. |
| 27 'nacl/nacl_ipc_adapter.cc', |
| 28 'nacl/nacl_ipc_adapter.h', |
| 29 'nacl/nacl_ipc_manager.cc', |
| 30 'nacl/nacl_ipc_manager.h', |
27 'nacl/nacl_main.cc', | 31 'nacl/nacl_main.cc', |
28 'nacl/nacl_main_platform_delegate.h', | 32 'nacl/nacl_main_platform_delegate.h', |
29 'nacl/nacl_main_platform_delegate_linux.cc', | 33 'nacl/nacl_main_platform_delegate_linux.cc', |
30 'nacl/nacl_main_platform_delegate_mac.mm', | 34 'nacl/nacl_main_platform_delegate_mac.mm', |
31 'nacl/nacl_main_platform_delegate_win.cc', | 35 'nacl/nacl_main_platform_delegate_win.cc', |
32 'nacl/nacl_listener.cc', | 36 'nacl/nacl_listener.cc', |
33 'nacl/nacl_listener.h', | 37 'nacl/nacl_listener.h', |
34 'nacl/nacl_validation_db.h', | 38 'nacl/nacl_validation_db.h', |
35 'nacl/nacl_validation_query.cc', | 39 'nacl/nacl_validation_query.cc', |
36 'nacl/nacl_validation_query.h', | 40 'nacl/nacl_validation_query.h', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 'target_name': 'nacl_win64', | 193 'target_name': 'nacl_win64', |
190 'type': 'none', | 194 'type': 'none', |
191 'sources': [], | 195 'sources': [], |
192 }, | 196 }, |
193 ], | 197 ], |
194 }], | 198 }], |
195 ], | 199 ], |
196 }], | 200 }], |
197 ], | 201 ], |
198 } | 202 } |
OLD | NEW |