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

Side by Side Diff: chrome/chrome_dll.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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'cryptui.dll', 186 'cryptui.dll',
187 'dhcpcsvc.dll', 187 'dhcpcsvc.dll',
188 'imagehlp.dll', 188 'imagehlp.dll',
189 'imm32.dll', 189 'imm32.dll',
190 'iphlpapi.dll', 190 'iphlpapi.dll',
191 'setupapi.dll', 191 'setupapi.dll',
192 'urlmon.dll', 192 'urlmon.dll',
193 'winhttp.dll', 193 'winhttp.dll',
194 'wininet.dll', 194 'wininet.dll',
195 'winspool.drv', 195 'winspool.drv',
196 'wlanapi.dll',
cbentzel 2013/10/16 12:51:36 Why is the wlanapi delay load needed for the chrom
196 'ws2_32.dll', 197 'ws2_32.dll',
197 'wsock32.dll', 198 'wsock32.dll',
198 ], 199 ],
199 }, 200 },
200 'VCManifestTool': { 201 'VCManifestTool': {
201 'AdditionalManifestFiles': [ 202 'AdditionalManifestFiles': [
202 '$(ProjectDir)\\app\\chrome.dll.manifest', 203 '$(ProjectDir)\\app\\chrome.dll.manifest',
203 ], 204 ],
204 }, 205 },
205 }, 206 },
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', 353 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
353 'app/chrome_main.cc', 354 'app/chrome_main.cc',
354 'app/chrome_main_delegate.cc', 355 'app/chrome_main_delegate.cc',
355 'app/chrome_main_delegate.h', 356 'app/chrome_main_delegate.h',
356 ], 357 ],
357 }, # target chrome_child_dll 358 }, # target chrome_child_dll
358 ], 359 ],
359 }], 360 }],
360 ], 361 ],
361 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698