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

Unified 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, 10 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
« pylib/gyp/MSVSUtil.py ('K') | « test/win/large-pdb/hello.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/large-pdb/large-pdb.gyp
diff --git a/test/win/large-pdb/large-pdb.gyp b/test/win/large-pdb/large-pdb.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..bc74609f78502684bdecc41c268f785231b0c65d
--- /dev/null
+++ b/test/win/large-pdb/large-pdb.gyp
@@ -0,0 +1,36 @@
+# Copyright (c) 2013 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': 'large_pdb',
+ 'type': 'executable',
scottmg 2013/03/06 19:03:34 please add a dll test too
chrisha 2013/03/14 15:57:23 Done.
+ 'msvs_large_pdb': 1,
+ 'sources': [
+ 'hello.cc',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'true',
+ 'ProgramDatabaseFile': '<(PRODUCT_DIR)/large_pdb.exe.pdb',
+ },
+ },
+ },
+ {
+ 'target_name': 'small_pdb',
+ 'type': 'executable',
+ 'msvs_large_pdb': 0,
+ 'sources': [
+ 'hello.cc',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'GenerateDebugInformation': 'true',
+ 'ProgramDatabaseFile': '<(PRODUCT_DIR)/small_pdb.exe.pdb',
+ },
+ },
+ },
+ ]
+}
« 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