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_host_messages.h', | |
jochen (gone - plz use gerrit)
2013/11/19 21:22:00
if you move this file here, you also need to have
| |
24 'nacl/common/nacl_messages.cc', | 25 'nacl/common/nacl_messages.cc', |
25 'nacl/common/nacl_messages.h', | 26 'nacl/common/nacl_messages.h', |
27 'nacl/common/nacl_process_type.h', | |
28 'nacl/common/nacl_sandbox_type_mac.h', | |
26 'nacl/common/nacl_types.cc', | 29 'nacl/common/nacl_types.cc', |
27 'nacl/common/nacl_types.h', | 30 'nacl/common/nacl_types.h', |
28 'nacl/common/pnacl_types.cc', | 31 'nacl/common/pnacl_types.cc', |
29 'nacl/common/pnacl_types.h', | 32 'nacl/common/pnacl_types.h', |
30 ], | 33 ], |
31 'include_dirs': [ | 34 'include_dirs': [ |
32 '..', | 35 '..', |
33 ], | 36 ], |
34 }, | 37 }, |
35 ], | 38 ], |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 'configurations': { | 75 'configurations': { |
73 'Common_Base': { | 76 'Common_Base': { |
74 'msvs_target_platform': 'x64', | 77 'msvs_target_platform': 'x64', |
75 }, | 78 }, |
76 }, | 79 }, |
77 }, | 80 }, |
78 ], | 81 ], |
79 }], | 82 }], |
80 ], | 83 ], |
81 } | 84 } |
OLD | NEW |