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

Side by Side Diff: content/content_child.gypi

Issue 2029343002: Link to DirectWrite directly, instead of calling LoadLibrary (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Link content_unittests to dwrite.dll Created 4 years, 5 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
OLDNEW
1 # Use of this source code is governed by a BSD-style license that can be 1 # Use of this source code is governed by a BSD-style license that can be
2 # found in the LICENSE file. 2 # found in the LICENSE file.
3 3
4 { 4 {
5 'dependencies': [ 5 'dependencies': [
6 '../base/base.gyp:base', 6 '../base/base.gyp:base',
7 '../components/mime_util/mime_util.gyp:mime_util', 7 '../components/mime_util/mime_util.gyp:mime_util',
8 '../components/scheduler/scheduler.gyp:scheduler', 8 '../components/scheduler/scheduler.gyp:scheduler',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../components/webcrypto/webcrypto.gyp:webcrypto', 10 '../components/webcrypto/webcrypto.gyp:webcrypto',
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ['exclude', 'child/webthemeengine_impl_default.cc'], 249 ['exclude', 'child/webthemeengine_impl_default.cc'],
250 ['exclude', 'child/webthemeengine_impl_default.h'], 250 ['exclude', 'child/webthemeengine_impl_default.h'],
251 ], 251 ],
252 } 252 }
253 ], 253 ],
254 ['OS=="android"', { 254 ['OS=="android"', {
255 'dependencies': [ 255 'dependencies': [
256 '../build/android/ndk.gyp:cpu_features', 256 '../build/android/ndk.gyp:cpu_features',
257 ], 257 ],
258 }], 258 }],
259 ['OS=="win"', {
260 'msvs_settings': {
261 'VCLinkerTool': {
262 'AdditionalDependencies': [
263 'dwrite.lib',
264 ]
265 }
266 }
267 }],
259 ['enable_plugins==0', { 268 ['enable_plugins==0', {
260 'sources!': [ 269 'sources!': [
261 'child/browser_font_resource_trusted.cc', 270 'child/browser_font_resource_trusted.cc',
262 ], 271 ],
263 }], 272 }],
264 ], 273 ],
265 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698