OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'nacl_switches', | 8 'target_name': 'nacl_switches', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 'nacl/common/nacl_switches.cc', | 11 'nacl/common/nacl_switches.cc', |
12 'nacl/common/nacl_switches.h', | 12 'nacl/common/nacl_switches.h', |
13 ], | 13 ], |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 '..', | 15 '..', |
16 ], | 16 ], |
17 }, | 17 }, |
18 { | 18 { |
19 'target_name': 'nacl_common', | 19 'target_name': 'nacl_common', |
20 'type': 'static_library', | 20 'type': 'static_library', |
21 'sources': [ | 21 'sources': [ |
22 'nacl/common/nacl_cmd_line.cc', | 22 'nacl/common/nacl_cmd_line.cc', |
23 'nacl/common/nacl_cmd_line.h', | 23 'nacl/common/nacl_cmd_line.h', |
24 'nacl/common/nacl_messages.cc', | 24 'nacl/common/nacl_messages.cc', |
25 'nacl/common/nacl_messages.h', | 25 'nacl/common/nacl_messages.h', |
26 'nacl/common/nacl_types.cc', | 26 'nacl/common/nacl_types.cc', |
27 'nacl/common/nacl_types.h', | 27 'nacl/common/nacl_types.h', |
| 28 'nacl/common/pnacl_types.cc', |
| 29 'nacl/common/pnacl_types.h', |
28 ], | 30 ], |
29 'include_dirs': [ | 31 'include_dirs': [ |
30 '..', | 32 '..', |
31 ], | 33 ], |
32 }, | 34 }, |
33 ], | 35 ], |
34 'conditions': [ | 36 'conditions': [ |
35 ['OS=="win" and target_arch=="ia32"', { | 37 ['OS=="win" and target_arch=="ia32"', { |
36 'targets': [ | 38 'targets': [ |
37 { | 39 { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'configurations': { | 72 'configurations': { |
71 'Common_Base': { | 73 'Common_Base': { |
72 'msvs_target_platform': 'x64', | 74 'msvs_target_platform': 'x64', |
73 }, | 75 }, |
74 }, | 76 }, |
75 }, | 77 }, |
76 ], | 78 ], |
77 }], | 79 }], |
78 ], | 80 ], |
79 } | 81 } |
OLD | NEW |