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

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: Use using chromeos:: to avoid lengthy namespace prefixes. Created 7 years, 2 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 ], 488 ],
489 'msvs_settings': { 489 'msvs_settings': {
490 'VCLinkerTool': { 490 'VCLinkerTool': {
491 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 491 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
492 'DelayLoadDLLs': [ 492 'DelayLoadDLLs': [
493 'dbghelp.dll', 493 'dbghelp.dll',
494 'dwmapi.dll', 494 'dwmapi.dll',
495 'uxtheme.dll', 495 'uxtheme.dll',
496 'ole32.dll', 496 'ole32.dll',
497 'oleaut32.dll', 497 'oleaut32.dll',
498 'wlanapi.dll',
498 ], 499 ],
499 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 500 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
500 'SubSystem': '2', 501 'SubSystem': '2',
501 }, 502 },
502 'VCManifestTool': { 503 'VCManifestTool': {
503 'AdditionalManifestFiles': [ 504 'AdditionalManifestFiles': [
504 '$(ProjectDir)\\app\\chrome.exe.manifest', 505 '$(ProjectDir)\\app\\chrome.exe.manifest',
505 ], 506 ],
506 }, 507 },
507 }, 508 },
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 'dependencies': [ 639 'dependencies': [
639 'chrome_nacl_win64', 640 'chrome_nacl_win64',
640 ], 641 ],
641 }], 642 }],
642 ], 643 ],
643 }, 644 },
644 ], 645 ],
645 }], 646 }],
646 ], 647 ],
647 } 648 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698