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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 11384003: Make all pdb file names follow the same naming convention. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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 | « chrome/chrome_dll.gypi ('k') | chrome/chrome_syzygy.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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 '../sandbox/sandbox.gyp:sandbox', 472 '../sandbox/sandbox.gyp:sandbox',
473 'app/policy/cloud_policy_codegen.gyp:policy', 473 'app/policy/cloud_policy_codegen.gyp:policy',
474 ], 474 ],
475 'sources': [ 475 'sources': [
476 'app/chrome_exe.rc', 476 'app/chrome_exe.rc',
477 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', 477 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
478 ], 478 ],
479 'msvs_settings': { 479 'msvs_settings': {
480 'VCLinkerTool': { 480 'VCLinkerTool': {
481 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 481 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
482 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb',
483 'DelayLoadDLLs': [ 482 'DelayLoadDLLs': [
484 'dbghelp.dll', 483 'dbghelp.dll',
485 'dwmapi.dll', 484 'dwmapi.dll',
486 'uxtheme.dll', 485 'uxtheme.dll',
487 'ole32.dll', 486 'ole32.dll',
488 'oleaut32.dll', 487 'oleaut32.dll',
489 ], 488 ],
490 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 489 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
491 'SubSystem': '2', 490 'SubSystem': '2',
492 }, 491 },
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 'defines': [ 576 'defines': [
578 '<@(nacl_win64_defines)', 577 '<@(nacl_win64_defines)',
579 'COMPILE_CONTENT_STATICALLY', 578 'COMPILE_CONTENT_STATICALLY',
580 ], 579 ],
581 'include_dirs': [ 580 'include_dirs': [
582 '<(SHARED_INTERMEDIATE_DIR)/chrome', 581 '<(SHARED_INTERMEDIATE_DIR)/chrome',
583 ], 582 ],
584 'msvs_settings': { 583 'msvs_settings': {
585 'VCLinkerTool': { 584 'VCLinkerTool': {
586 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', 585 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib',
587 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb',
588 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 586 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
589 }, 587 },
590 }, 588 },
591 'configurations': { 589 'configurations': {
592 'Common_Base': { 590 'Common_Base': {
593 'msvs_target_platform': 'x64', 591 'msvs_target_platform': 'x64',
594 }, 592 },
595 }, 593 },
596 }, 594 },
597 ], 595 ],
598 }, { # else (disable_nacl==1) 596 }, { # else (disable_nacl==1)
599 'targets': [ 597 'targets': [
600 { 598 {
601 'target_name': 'chrome_nacl_win64', 599 'target_name': 'chrome_nacl_win64',
602 'type': 'none', 600 'type': 'none',
603 'sources': [], 601 'sources': [],
604 }, 602 },
605 ], 603 ],
606 }], 604 }],
607 ], 605 ],
608 }], 606 }],
609 ], 607 ],
610 } 608 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_syzygy.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698