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

Unified Diff: test/win/compiler_flags/additional-options.gyp

Issue 9460049: Next level of changes to get more of Chrome building (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: wip 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 | « test/lib/TestCmd.py ('k') | test/win/compiler_flags/buffer-security-check.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/compiler_flags/additional-options.gyp
diff --git a/test/win/compiler_flags/additional-options.gyp b/test/win/compiler_flags/additional-options.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..98a8fe85f4910a2f4c40489b9e9d3df3588bbf91
--- /dev/null
+++ b/test/win/compiler_flags/additional-options.gyp
@@ -0,0 +1,46 @@
+# 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_additional_none',
+ 'product_name': 'test_additional_none',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_additional_one',
+ 'product_name': 'test_additional_one',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions': [ '/WEE' ]
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_additional_few',
+ 'product_name': 'test_additional_few',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions': [ '/WEE', '/WAA', '/WOO' ]
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ ]
+}
« no previous file with comments | « test/lib/TestCmd.py ('k') | test/win/compiler_flags/buffer-security-check.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698