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

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: Addressed (some) codereview comments. 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 ], 490 ],
491 'msvs_settings': { 491 'msvs_settings': {
492 'VCLinkerTool': { 492 'VCLinkerTool': {
493 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 493 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
494 'DelayLoadDLLs': [ 494 'DelayLoadDLLs': [
495 'dbghelp.dll', 495 'dbghelp.dll',
496 'dwmapi.dll', 496 'dwmapi.dll',
497 'uxtheme.dll', 497 'uxtheme.dll',
498 'ole32.dll', 498 'ole32.dll',
499 'oleaut32.dll', 499 'oleaut32.dll',
500 'wlanapi.dll',
500 ], 501 ],
501 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 502 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
502 'SubSystem': '2', 503 'SubSystem': '2',
503 }, 504 },
504 'VCManifestTool': { 505 'VCManifestTool': {
505 'AdditionalManifestFiles': [ 506 'AdditionalManifestFiles': [
506 '$(ProjectDir)\\app\\chrome.exe.manifest', 507 '$(ProjectDir)\\app\\chrome.exe.manifest',
507 ], 508 ],
508 }, 509 },
509 }, 510 },
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 'dependencies': [ 641 'dependencies': [
641 'chrome_nacl_win64', 642 'chrome_nacl_win64',
642 ], 643 ],
643 }], 644 }],
644 ], 645 ],
645 }, 646 },
646 ], 647 ],
647 }], 648 }],
648 ], 649 ],
649 } 650 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698