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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 22295002: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compilation error. Created 7 years, 4 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
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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 ], 487 ],
488 'msvs_settings': { 488 'msvs_settings': {
489 'VCLinkerTool': { 489 'VCLinkerTool': {
490 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 490 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
491 'DelayLoadDLLs': [ 491 'DelayLoadDLLs': [
492 'dbghelp.dll', 492 'dbghelp.dll',
493 'dwmapi.dll', 493 'dwmapi.dll',
494 'uxtheme.dll', 494 'uxtheme.dll',
495 'ole32.dll', 495 'ole32.dll',
496 'oleaut32.dll', 496 'oleaut32.dll',
497 'wlanapi.dll',
497 ], 498 ],
498 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 499 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
499 'SubSystem': '2', 500 'SubSystem': '2',
500 }, 501 },
501 'VCManifestTool': { 502 'VCManifestTool': {
502 'AdditionalManifestFiles': [ 503 'AdditionalManifestFiles': [
503 '$(ProjectDir)\\app\\chrome.exe.manifest', 504 '$(ProjectDir)\\app\\chrome.exe.manifest',
504 ], 505 ],
505 }, 506 },
506 }, 507 },
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 'dependencies': [ 638 'dependencies': [
638 'chrome_nacl_win64', 639 'chrome_nacl_win64',
639 ], 640 ],
640 }], 641 }],
641 ], 642 ],
642 }, 643 },
643 ], 644 ],
644 }], 645 }],
645 ], 646 ],
646 } 647 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698