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

Side by Side Diff: Source/platform/BUILD.gn

Issue 550083005: Merge FontPlatformDataHarfBuzz into FontPlatformData (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Formatting fix in FontPlatformData.h (Daniel's comment) Created 6 years, 3 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 | Source/platform/blink_platform.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/config.gni") 7 import("//third_party/WebKit/Source/config.gni")
8 import("//third_party/WebKit/Source/platform/platform.gni") 8 import("//third_party/WebKit/Source/platform/platform.gni")
9 import("//third_party/WebKit/Source/platform/platform_generated.gni") 9 import("//third_party/WebKit/Source/platform/platform_generated.gni")
10 10
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "//third_party/libwebp", 218 "//third_party/libwebp",
219 "//third_party/ots", 219 "//third_party/ots",
220 "//third_party/qcms", 220 "//third_party/qcms",
221 "//url", 221 "//url",
222 "//v8", 222 "//v8",
223 ] 223 ]
224 224
225 if (is_mac) { 225 if (is_mac) {
226 sources -= [ 226 sources -= [
227 "fonts/harfbuzz/FontHarfBuzz.cpp", 227 "fonts/harfbuzz/FontHarfBuzz.cpp",
228 "fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp",
229 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp", 228 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp",
230 "fonts/opentype/OpenTypeTypes.h", 229 "fonts/opentype/OpenTypeTypes.h",
231 "fonts/opentype/OpenTypeVerticalData.cpp", 230 "fonts/opentype/OpenTypeVerticalData.cpp",
232 "fonts/opentype/OpenTypeVerticalData.h", 231 "fonts/opentype/OpenTypeVerticalData.h",
233 # The Mac currently uses FontCustomPlatformDataMac.cpp instead. 232 # The Mac currently uses FontCustomPlatformDataMac.cpp instead.
234 "fonts/skia/FontCustomPlatformDataSkia.cpp", 233 "fonts/skia/FontCustomPlatformDataSkia.cpp",
235 "fonts/skia/FontCacheSkia.cpp", 234 "fonts/skia/FontCacheSkia.cpp",
236 "fonts/skia/SimpleFontDataSkia.cpp", 235 "fonts/skia/SimpleFontDataSkia.cpp",
237 # Uses LocaleMac instead. 236 # Uses LocaleMac instead.
238 "text/LocaleICU.cpp", 237 "text/LocaleICU.cpp",
(...skipping 16 matching lines...) Expand all
255 254
256 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ] 255 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ]
257 configs += [ ":mac_objc_renaming" ] 256 configs += [ ":mac_objc_renaming" ]
258 libs = [ 257 libs = [
259 "Accelerate.framework", 258 "Accelerate.framework",
260 "Carbon.framework", 259 "Carbon.framework",
261 "Foundation.framework", 260 "Foundation.framework",
262 ] 261 ]
263 } else { 262 } else {
264 sources -= [ 263 sources -= [
265 # FIXME: We will eventually compile this too, but for now it's
266 # only used on mac.
267 "fonts/FontPlatformData.cpp",
268 "fonts/harfbuzz/HarfBuzzFaceCoreText.cpp", 264 "fonts/harfbuzz/HarfBuzzFaceCoreText.cpp",
269 "geometry/cg/FloatPointCG.cpp", 265 "geometry/cg/FloatPointCG.cpp",
270 "geometry/cg/FloatRectCG.cpp", 266 "geometry/cg/FloatRectCG.cpp",
271 "geometry/cg/FloatSizeCG.cpp", 267 "geometry/cg/FloatSizeCG.cpp",
272 "geometry/cg/IntPointCG.cpp", 268 "geometry/cg/IntPointCG.cpp",
273 "geometry/cg/IntRectCG.cpp", 269 "geometry/cg/IntRectCG.cpp",
274 "geometry/cg/IntSizeCG.cpp", 270 "geometry/cg/IntSizeCG.cpp",
275 ] 271 ]
276 } 272 }
277 273
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 #'cflags': ['-marm'], 405 #'cflags': ['-marm'],
410 # 'conditions': [ 406 # 'conditions': [
411 # ['OS=="android"', { 407 # ['OS=="android"', {
412 # 'cflags!': ['-mthumb'], 408 # 'cflags!': ['-mthumb'],
413 # }], 409 # }],
414 # ], 410 # ],
415 411
416 deps = [ ":blink_common" ] 412 deps = [ ":blink_common" ]
417 } 413 }
418 } 414 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/blink_platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698