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

Side by Side Diff: test/win/large-pdb/large-pdb.gyp

Issue 12476002: Create msvs_large_pdb workaround. (Closed) Base URL: https://git.chromium.org/git/external/gyp.git@master
Patch Set: Created 7 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 unified diff | Download patch
« pylib/gyp/MSVSUtil.py ('K') | « test/win/large-pdb/hello.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'large_pdb',
9 'type': 'executable',
scottmg 2013/03/06 19:03:34 please add a dll test too
chrisha 2013/03/14 15:57:23 Done.
10 'msvs_large_pdb': 1,
11 'sources': [
12 'hello.cc',
13 ],
14 'msvs_settings': {
15 'VCLinkerTool': {
16 'GenerateDebugInformation': 'true',
17 'ProgramDatabaseFile': '<(PRODUCT_DIR)/large_pdb.exe.pdb',
18 },
19 },
20 },
21 {
22 'target_name': 'small_pdb',
23 'type': 'executable',
24 'msvs_large_pdb': 0,
25 'sources': [
26 'hello.cc',
27 ],
28 'msvs_settings': {
29 'VCLinkerTool': {
30 'GenerateDebugInformation': 'true',
31 'ProgramDatabaseFile': '<(PRODUCT_DIR)/small_pdb.exe.pdb',
32 },
33 },
34 },
35 ]
36 }
OLDNEW
« pylib/gyp/MSVSUtil.py ('K') | « test/win/large-pdb/hello.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698