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

Unified Diff: test/win/linker-flags/program-database.gyp

Issue 11359044: Add support for ProgramDatabaseFile to Ninja (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 1 month 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/gyptest-link-pdb.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker-flags/program-database.gyp
===================================================================
--- test/win/linker-flags/program-database.gyp (revision 0)
+++ test/win/linker-flags/program-database.gyp (revision 0)
@@ -0,0 +1,23 @@
+# 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': [
+ # Verify that 'ProgramDataBase' option correctly makes it to LINK steup in Ninja
iannucci 2012/11/02 21:09:34 steup -> typo?
noelallen1 2012/11/03 00:49:41 Fixing in new CL: https://codereview.chromium.org/
+ {
+ 'target_name': 'test_pdb_set',
+ 'type': 'executable',
+ 'sources': ['hello.cc'],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'DebugInformationFormat': '3'
+ },
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'true',
+ 'ProgramDatabaseFile': '<(PRODUCT_DIR)\\name_set.pdb',
+ },
+ },
+ },
+ ]
+}
Property changes on: test\win\linker-flags\program-database.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « test/win/gyptest-link-pdb.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698