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

Unified Diff: test/win/linker_flags/debug-info.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/win/linker_flags/aslr.gyp ('k') | test/win/linker_flags/default-libs.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker_flags/debug-info.gyp
diff --git a/test/win/linker_flags/debug-info.gyp b/test/win/linker_flags/debug-info.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..0dcee3fd5a28c8828994b9950517923dda2cb860
--- /dev/null
+++ b/test/win/linker_flags/debug-info.gyp
@@ -0,0 +1,34 @@
+# 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_debug_off',
+ 'product_name': 'test_debug_off',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'false'
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_debug_on',
+ 'product_name': 'test_debug_on',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'true'
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ ]
+}
« no previous file with comments | « test/win/linker_flags/aslr.gyp ('k') | test/win/linker_flags/default-libs.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698