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

Side by Side Diff: base/base.gyp

Issue 951083003: xp: copy dbghelp.dll to output dir and have base.isolate use it there (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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
« no previous file with comments | « no previous file | base/base.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'setupapi.dll', 181 'setupapi.dll',
182 ], 182 ],
183 'AdditionalDependencies': [ 183 'AdditionalDependencies': [
184 'cfgmgr32.lib', 184 'cfgmgr32.lib',
185 'powrprof.lib', 185 'powrprof.lib',
186 'setupapi.lib', 186 'setupapi.lib',
187 ], 187 ],
188 }, 188 },
189 }, 189 },
190 }, 190 },
191 'copies': [
192 {
193 'destination': '<(PRODUCT_DIR)/',
194 'files': [
195 '../build/win/dbghelp_xp/dbghelp.dll',
196 ],
197 },
198 ],
191 }], 199 }],
192 ['OS == "mac" or (OS == "ios" and _toolset == "host")', { 200 ['OS == "mac" or (OS == "ios" and _toolset == "host")', {
193 'link_settings': { 201 'link_settings': {
194 'libraries': [ 202 'libraries': [
195 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 203 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
196 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k', 204 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k',
197 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', 205 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
198 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 206 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
199 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 207 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
200 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 208 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 'dependencies': [ 1568 'dependencies': [
1561 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1569 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1562 ], 1570 ],
1563 }], 1571 }],
1564 ], 1572 ],
1565 }, 1573 },
1566 ], 1574 ],
1567 }], 1575 }],
1568 ], 1576 ],
1569 } 1577 }
OLDNEW
« no previous file with comments | « no previous file | base/base.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698