Chromium Code Reviews| 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 |