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

Side by Side Diff: build/common.gypi

Issue 150012: Another go at switching mini_installer to gyp. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « no previous file | chrome/installer/installer.gyp » ('j') | 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 'variables': { 6 'variables': {
7 # .gyp files should set chromium_code to 1 if they build Chromium-specific 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific
8 # code, as opposed to external code. This variable is used to control 8 # code, as opposed to external code. This variable is used to control
9 # such things as the set of warnings to enable, and whether warnings are 9 # such things as the set of warnings to enable, and whether warnings are
10 # treated as errors. 10 # treated as errors.
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 'WarnAsError': 'true', 477 'WarnAsError': 'true',
478 'DebugInformationFormat': '3', 478 'DebugInformationFormat': '3',
479 }, 479 },
480 'VCLibrarianTool': { 480 'VCLibrarianTool': {
481 'AdditionalOptions': '/ignore:4221', 481 'AdditionalOptions': '/ignore:4221',
482 'AdditionalLibraryDirectories': 482 'AdditionalLibraryDirectories':
483 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'], 483 ['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
484 }, 484 },
485 'VCLinkerTool': { 485 'VCLinkerTool': {
486 'AdditionalOptions': 486 'AdditionalOptions':
487 '/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat', 487 '/safeseh:NO /dynamicbase:NO /ignore:4199 /ignore:4221 /nxcompat',
488 'AdditionalDependencies': [ 488 'AdditionalDependencies': [
489 'wininet.lib', 489 'wininet.lib',
490 'version.lib', 490 'version.lib',
491 'msimg32.lib', 491 'msimg32.lib',
492 'ws2_32.lib', 492 'ws2_32.lib',
493 'usp10.lib', 493 'usp10.lib',
494 'psapi.lib', 494 'psapi.lib',
495 'dbghelp.lib', 495 'dbghelp.lib',
496 ], 496 ],
497 'AdditionalLibraryDirectories': 497 'AdditionalLibraryDirectories':
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 # settings in target dicts. SYMROOT is a special case, because many other 549 # settings in target dicts. SYMROOT is a special case, because many other
550 # Xcode variables depend on it, including variables such as 550 # Xcode variables depend on it, including variables such as
551 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 551 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
552 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 552 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
553 # files to appear (when present) in the UI as actual files and not red 553 # files to appear (when present) in the UI as actual files and not red
554 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 554 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
555 # and therefore SYMROOT, needs to be set at the project level. 555 # and therefore SYMROOT, needs to be set at the project level.
556 'SYMROOT': '<(DEPTH)/xcodebuild', 556 'SYMROOT': '<(DEPTH)/xcodebuild',
557 }, 557 },
558 } 558 }
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698