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

Side by Side Diff: sandbox/sandbox.gyp

Issue 115664: Explicitly enable /INCREMENTAL linking for gyp-generated Debug builds,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « media/media.gyp ('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
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS=="win"', { 10 [ 'OS=="win"', {
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 276
277 # Precompiled headers. 277 # Precompiled headers.
278 'sandbox_poc/stdafx.cc', 278 'sandbox_poc/stdafx.cc',
279 'sandbox_poc/stdafx.h', 279 'sandbox_poc/stdafx.h',
280 ], 280 ],
281 'link_settings': { 281 'link_settings': {
282 'libraries': [ 282 'libraries': [
283 '-lcomctl32.lib', 283 '-lcomctl32.lib',
284 ], 284 ],
285 }, 285 },
286 'msvs_settings': {
287 'VCLinkerTool': {
288 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
289 },
290 },
286 'configurations': { 291 'configurations': {
287 'Debug': { 292 'Debug': {
288 'msvs_precompiled_header': 'sandbox_poc/stdafx.h', 293 'msvs_precompiled_header': 'sandbox_poc/stdafx.h',
289 'msvs_precompiled_source': 'sandbox_poc/stdafx.cc', 294 'msvs_precompiled_source': 'sandbox_poc/stdafx.cc',
290 }, 295 },
291 }, 296 },
292 }, 297 },
293 { 298 {
294 'target_name': 'pocdll', 299 'target_name': 'pocdll',
295 'type': 'shared_library', 300 'type': 'shared_library',
(...skipping 23 matching lines...) Expand all
319 'Debug': { 324 'Debug': {
320 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', 325 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h',
321 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', 326 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc',
322 }, 327 },
323 }, 328 },
324 }, 329 },
325 ], 330 ],
326 }], 331 }],
327 ], 332 ],
328 } 333 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698