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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 6831025: Adds support for the DHCP portion of the WPAD (proxy auto-discovery) protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory leaks in unit test. Created 9 years, 7 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chrome_dll_target': 0, 7 'chrome_dll_target': 0,
8 }, 8 },
9 'target_conditions': [ 9 'target_conditions': [
10 ['chrome_dll_target==1', { 10 ['chrome_dll_target==1', {
11 'conditions': [ 11 'conditions': [
12 ['OS=="win"', { 12 ['OS=="win"', {
13 'include_dirs': [ 13 'include_dirs': [
14 '<(DEPTH)/third_party/wtl/include', 14 '<(DEPTH)/third_party/wtl/include',
15 ], 15 ],
16 'defines': [ 16 'defines': [
17 'CHROME_DLL', 17 'CHROME_DLL',
18 'BROWSER_DLL', 18 'BROWSER_DLL',
19 'RENDERER_DLL', 19 'RENDERER_DLL',
20 'PLUGIN_DLL', 20 'PLUGIN_DLL',
21 ], 21 ],
22 'msvs_settings': { 22 'msvs_settings': {
23 'VCLinkerTool': { 23 'VCLinkerTool': {
24 'BaseAddress': '0x01c30000', 24 'BaseAddress': '0x01c30000',
25 'DelayLoadDLLs': [ 25 'DelayLoadDLLs': [
26 'comdlg32.dll',
26 'crypt32.dll', 27 'crypt32.dll',
27 'cryptui.dll', 28 'cryptui.dll',
28 'winhttp.dll', 29 'dhcpcsvc.dll',
29 'wininet.dll',
30 'wsock32.dll',
31 'ws2_32.dll',
32 'winspool.drv',
33 'comdlg32.dll',
34 'imagehlp.dll', 30 'imagehlp.dll',
35 'urlmon.dll',
36 'imm32.dll', 31 'imm32.dll',
37 'iphlpapi.dll', 32 'iphlpapi.dll',
38 'setupapi.dll', 33 'setupapi.dll',
34 'urlmon.dll',
35 'winhttp.dll',
36 'wininet.dll',
37 'winspool.drv',
38 'ws2_32.dll',
39 'wsock32.dll',
39 ], 40 ],
40 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency). 41 # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency).
41 'SubSystem': '2', 42 'SubSystem': '2',
42 }, 43 },
43 'VCManifestTool': { 44 'VCManifestTool': {
44 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.manif est', 45 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.dll.manif est',
45 }, 46 },
46 }, 47 },
47 'configurations': { 48 'configurations': {
48 'Debug_Base': { 49 'Debug_Base': {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 'LinkIncremental': '<(msvs_debug_link_nonincremental)', 650 'LinkIncremental': '<(msvs_debug_link_nonincremental)',
650 }, 651 },
651 }, 652 },
652 }, 653 },
653 }, 654 },
654 }, # target chrome_dll 655 }, # target chrome_dll
655 ], 656 ],
656 }], 657 }],
657 ], 658 ],
658 } 659 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698