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': { |
(...skipping 15 matching lines...) Expand all Loading... |
26 # Test files are also not included. | 26 # Test files are also not included. |
27 'nacl/nacl_ipc_adapter.cc', | 27 'nacl/nacl_ipc_adapter.cc', |
28 'nacl/nacl_ipc_adapter.h', | 28 'nacl/nacl_ipc_adapter.h', |
29 'nacl/nacl_main.cc', | 29 'nacl/nacl_main.cc', |
30 'nacl/nacl_main_platform_delegate.h', | 30 'nacl/nacl_main_platform_delegate.h', |
31 'nacl/nacl_main_platform_delegate_linux.cc', | 31 'nacl/nacl_main_platform_delegate_linux.cc', |
32 'nacl/nacl_main_platform_delegate_mac.mm', | 32 'nacl/nacl_main_platform_delegate_mac.mm', |
33 'nacl/nacl_main_platform_delegate_win.cc', | 33 'nacl/nacl_main_platform_delegate_win.cc', |
34 'nacl/nacl_listener.cc', | 34 'nacl/nacl_listener.cc', |
35 'nacl/nacl_listener.h', | 35 'nacl/nacl_listener.h', |
| 36 'nacl/nacl_switches.cc', |
| 37 'nacl/nacl_switches.h', |
36 'nacl/nacl_validation_db.h', | 38 'nacl/nacl_validation_db.h', |
37 'nacl/nacl_validation_query.cc', | 39 'nacl/nacl_validation_query.cc', |
38 'nacl/nacl_validation_query.h', | 40 'nacl/nacl_validation_query.h', |
39 ], | 41 ], |
40 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines | 42 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines |
41 'conditions': [ | 43 'conditions': [ |
42 ['OS=="win"', { | 44 ['OS=="win"', { |
43 'defines': [ | 45 'defines': [ |
44 '__STDC_LIMIT_MACROS=1', | 46 '__STDC_LIMIT_MACROS=1', |
45 ], | 47 ], |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'target_name': 'nacl_win64', | 204 'target_name': 'nacl_win64', |
203 'type': 'none', | 205 'type': 'none', |
204 'sources': [], | 206 'sources': [], |
205 }, | 207 }, |
206 ], | 208 ], |
207 }], | 209 }], |
208 ], | 210 ], |
209 }], | 211 }], |
210 ], | 212 ], |
211 } | 213 } |
OLD | NEW |