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

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: Addressed scottmg's nits. 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
« no previous file with comments | « test/win/large-pdb/dllmain.cc ('k') | test/win/large-pdb/main.cc » ('j') | 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_exe',
9 'type': 'executable',
10 'msvs_large_pdb': 1,
11 'sources': [
12 'main.cc',
13 ],
14 'msvs_settings': {
15 'VCLinkerTool': {
16 'GenerateDebugInformation': 'true',
17 'ProgramDatabaseFile': '<(PRODUCT_DIR)/large_pdb_exe.exe.pdb',
18 },
19 },
20 },
21 {
22 'target_name': 'small_pdb_exe',
23 'type': 'executable',
24 'msvs_large_pdb': 0,
25 'sources': [
26 'main.cc',
27 ],
28 'msvs_settings': {
29 'VCLinkerTool': {
30 'GenerateDebugInformation': 'true',
31 'ProgramDatabaseFile': '<(PRODUCT_DIR)/small_pdb_exe.exe.pdb',
32 },
33 },
34 },
35 {
36 'target_name': 'large_pdb_dll',
37 'type': 'shared_library',
38 'msvs_large_pdb': 1,
39 'sources': [
40 'dllmain.cc',
41 ],
42 'msvs_settings': {
43 'VCLinkerTool': {
44 'GenerateDebugInformation': 'true',
45 'ProgramDatabaseFile': '<(PRODUCT_DIR)/large_pdb_dll.dll.pdb',
46 },
47 },
48 },
49 {
50 'target_name': 'small_pdb_dll',
51 'type': 'shared_library',
52 'msvs_large_pdb': 0,
53 'sources': [
54 'dllmain.cc',
55 ],
56 'msvs_settings': {
57 'VCLinkerTool': {
58 'GenerateDebugInformation': 'true',
59 'ProgramDatabaseFile': '<(PRODUCT_DIR)/small_pdb_dll.dll.pdb',
60 },
61 },
62 },
63 ]
64 }
OLDNEW
« no previous file with comments | « test/win/large-pdb/dllmain.cc ('k') | test/win/large-pdb/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698