| 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', |
| 25 'nacl/common/nacl_host_messages.cc', |
| 24 'nacl/common/nacl_messages.cc', | 26 'nacl/common/nacl_messages.cc', |
| 25 'nacl/common/nacl_messages.h', | 27 'nacl/common/nacl_messages.h', |
| 28 'nacl/common/nacl_process_type.h', |
| 29 'nacl/common/nacl_sandbox_type_mac.h', |
| 26 'nacl/common/nacl_types.cc', | 30 'nacl/common/nacl_types.cc', |
| 27 'nacl/common/nacl_types.h', | 31 'nacl/common/nacl_types.h', |
| 28 'nacl/common/pnacl_types.cc', | 32 'nacl/common/pnacl_types.cc', |
| 29 'nacl/common/pnacl_types.h', | 33 'nacl/common/pnacl_types.h', |
| 30 ], | 34 ], |
| 31 'include_dirs': [ | 35 'include_dirs': [ |
| 32 '..', | 36 '..', |
| 33 ], | 37 ], |
| 34 }, | 38 }, |
| 35 ], | 39 ], |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'configurations': { | 76 'configurations': { |
| 73 'Common_Base': { | 77 'Common_Base': { |
| 74 'msvs_target_platform': 'x64', | 78 'msvs_target_platform': 'x64', |
| 75 }, | 79 }, |
| 76 }, | 80 }, |
| 77 }, | 81 }, |
| 78 ], | 82 ], |
| 79 }], | 83 }], |
| 80 ], | 84 ], |
| 81 } | 85 } |
| OLD | NEW |