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

Unified Diff: test/win/compiler-flags/character-set.gyp

Issue 9443044: Beginnings of some msvs_... emulation (windows ninja) (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: add missing test files and some _->- 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pylib/gyp/msvs_emulation.py ('k') | test/win/compiler-flags/character-set-mbcs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/compiler-flags/character-set.gyp
diff --git a/test/win/compiler-flags/character-set.gyp b/test/win/compiler-flags/character-set.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..c9b31eecebd8948967c75e9fc215694361544cc5
--- /dev/null
+++ b/test/win/compiler-flags/character-set.gyp
@@ -0,0 +1,41 @@
+# Copyright (c) 2012 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'test_cs_notset',
+ 'product_name': 'test_cs_notset',
+ 'type': 'executable',
+ 'msvs_configuration_attributes': {
+ 'CharacterSet': '0'
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_cs_unicode',
+ 'product_name': 'test_cs_unicode',
+ 'type': 'executable',
+ 'msvs_configuration_attributes': {
+ 'CharacterSet': '1'
+ },
+ 'sources': [
+ 'character-set-unicode.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_cs_mbcs',
+ 'product_name': 'test_cs_mbcs',
+ 'type': 'executable',
+ 'msvs_configuration_attributes': {
+ 'CharacterSet': '2'
+ },
+ 'sources': [
+ 'character-set-mbcs.cc'
+ ]
+ },
+ ]
+}
« no previous file with comments | « pylib/gyp/msvs_emulation.py ('k') | test/win/compiler-flags/character-set-mbcs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698