| 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 { |
| 19 'target_name': 'nacl_common', |
| 20 'type': 'static_library', |
| 21 'sources': [ |
| 22 'nacl/common/nacl_cmd_line.cc', |
| 23 'nacl/common/nacl_cmd_line.h', |
| 24 ], |
| 25 'include_dirs': [ |
| 26 '..', |
| 27 ], |
| 28 }, |
| 18 ], | 29 ], |
| 19 'conditions': [ | 30 'conditions': [ |
| 20 ['OS=="win" and target_arch=="ia32"', { | 31 ['OS=="win" and target_arch=="ia32"', { |
| 21 'targets': [ | 32 'targets': [ |
| 22 { | 33 { |
| 23 'target_name': 'nacl_switches_win64', | 34 'target_name': 'nacl_switches_win64', |
| 24 'type': 'static_library', | 35 'type': 'static_library', |
| 25 'sources': [ | 36 'sources': [ |
| 26 'nacl/common/nacl_switches.cc', | 37 'nacl/common/nacl_switches.cc', |
| 27 'nacl/common/nacl_switches.h', | 38 'nacl/common/nacl_switches.h', |
| 28 ], | 39 ], |
| 29 'include_dirs': [ | 40 'include_dirs': [ |
| 30 '..', | 41 '..', |
| 31 ], | 42 ], |
| 32 'configurations': { | 43 'configurations': { |
| 33 'Common_Base': { | 44 'Common_Base': { |
| 34 'msvs_target_platform': 'x64', | 45 'msvs_target_platform': 'x64', |
| 35 }, | 46 }, |
| 36 }, | 47 }, |
| 37 }, | 48 }, |
| 49 { |
| 50 'target_name': 'nacl_common_win64', |
| 51 'type': 'static_library', |
| 52 'sources': [ |
| 53 'nacl/common/nacl_cmd_line.cc', |
| 54 'nacl/common/nacl_cmd_line.h', |
| 55 ], |
| 56 'include_dirs': [ |
| 57 '..', |
| 58 ], |
| 59 'configurations': { |
| 60 'Common_Base': { |
| 61 'msvs_target_platform': 'x64', |
| 62 }, |
| 63 }, |
| 64 }, |
| 38 ], | 65 ], |
| 39 }], | 66 }], |
| 40 ], | 67 ], |
| 41 } | 68 } |
| OLD | NEW |