Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Side by Side Diff: test/win/compiler_flags/rtti.gyp

Issue 9443044: Beginnings of some msvs_... emulation (windows ninja) (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: better place for normpath to remove need for $!-no-escape Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698