OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'test_rtti_off', |
| 9 'product_name': 'test_rtti_off', |
| 10 'type': 'executable', |
| 11 'msvs_settings': { |
| 12 'VCCLCompilerTool': { |
| 13 'RuntimeTypeInfo': 'false', |
| 14 'WarnAsError': 'true' |
| 15 } |
| 16 }, |
| 17 'sources': [ |
| 18 'hello.cc' |
| 19 ] |
| 20 }, |
| 21 { |
| 22 'target_name': 'test_rtti_on', |
| 23 'product_name': 'test_rtti_on', |
| 24 'type': 'executable', |
| 25 'msvs_settings': { |
| 26 'VCCLCompilerTool': { |
| 27 'RuntimeTypeInfo': 'true', |
| 28 'WarnAsError': 'true' |
| 29 } |
| 30 }, |
| 31 'sources': [ |
| 32 'rtti_on.cc' |
| 33 ] |
| 34 }, |
| 35 ] |
| 36 } |
OLD | NEW |