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

Side by Side Diff: build/common.gypi

Issue 125059: Change delayload attribute from string to list in gyp files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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 | « no previous file | third_party/ffmpeg/ffmpeg.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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 'wininet.lib', 486 'wininet.lib',
487 'version.lib', 487 'version.lib',
488 'msimg32.lib', 488 'msimg32.lib',
489 'ws2_32.lib', 489 'ws2_32.lib',
490 'usp10.lib', 490 'usp10.lib',
491 'psapi.lib', 491 'psapi.lib',
492 'dbghelp.lib', 492 'dbghelp.lib',
493 ], 493 ],
494 'AdditionalLibraryDirectories': 494 'AdditionalLibraryDirectories':
495 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib', 495 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib',
496 'DelayLoadDLLs': 'dbghelp.dll,dwmapi.dll,uxtheme.dll', 496 'DelayLoadDLLs': [
497 'dbghelp.dll',
498 'dwmapi.dll',
499 'uxtheme.dll',
500 ],
497 'GenerateDebugInformation': 'true', 501 'GenerateDebugInformation': 'true',
498 'MapFileName': '$(OutDir)\\$(TargetName).map', 502 'MapFileName': '$(OutDir)\\$(TargetName).map',
499 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', 503 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
500 'TargetMachine': '1', 504 'TargetMachine': '1',
501 'FixedBaseAddress': '1', 505 'FixedBaseAddress': '1',
502 # SubSystem values: 506 # SubSystem values:
503 # 0 == not set 507 # 0 == not set
504 # 1 == /SUBSYSTEM:CONSOLE 508 # 1 == /SUBSYSTEM:CONSOLE
505 # 2 == /SUBSYSTEM:WINDOWS 509 # 2 == /SUBSYSTEM:WINDOWS
506 # Most of the executables we'll ever create are tests 510 # Most of the executables we'll ever create are tests
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 # settings in target dicts. SYMROOT is a special case, because many other 546 # settings in target dicts. SYMROOT is a special case, because many other
543 # Xcode variables depend on it, including variables such as 547 # Xcode variables depend on it, including variables such as
544 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 548 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
545 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 549 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
546 # files to appear (when present) in the UI as actual files and not red 550 # files to appear (when present) in the UI as actual files and not red
547 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 551 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
548 # and therefore SYMROOT, needs to be set at the project level. 552 # and therefore SYMROOT, needs to be set at the project level.
549 'SYMROOT': '<(DEPTH)/xcodebuild', 553 'SYMROOT': '<(DEPTH)/xcodebuild',
550 }, 554 },
551 } 555 }
OLDNEW
« no previous file with comments | « no previous file | third_party/ffmpeg/ffmpeg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698