OLD | NEW |
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 Loading... |
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", |
228 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp", | 229 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp", |
229 "fonts/opentype/OpenTypeTypes.h", | 230 "fonts/opentype/OpenTypeTypes.h", |
230 "fonts/opentype/OpenTypeVerticalData.cpp", | 231 "fonts/opentype/OpenTypeVerticalData.cpp", |
231 "fonts/opentype/OpenTypeVerticalData.h", | 232 "fonts/opentype/OpenTypeVerticalData.h", |
232 # The Mac currently uses FontCustomPlatformDataMac.cpp instead. | 233 # The Mac currently uses FontCustomPlatformDataMac.cpp instead. |
233 "fonts/skia/FontCustomPlatformDataSkia.cpp", | 234 "fonts/skia/FontCustomPlatformDataSkia.cpp", |
234 "fonts/skia/FontCacheSkia.cpp", | 235 "fonts/skia/FontCacheSkia.cpp", |
235 "fonts/skia/SimpleFontDataSkia.cpp", | 236 "fonts/skia/SimpleFontDataSkia.cpp", |
236 # Uses LocaleMac instead. | 237 # Uses LocaleMac instead. |
237 "text/LocaleICU.cpp", | 238 "text/LocaleICU.cpp", |
(...skipping 16 matching lines...) Expand all Loading... |
254 | 255 |
255 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ] | 256 defines += [ "WebFontCache=ChromiumWebCoreObjCWebFontCache" ] |
256 configs += [ ":mac_objc_renaming" ] | 257 configs += [ ":mac_objc_renaming" ] |
257 libs = [ | 258 libs = [ |
258 "Accelerate.framework", | 259 "Accelerate.framework", |
259 "Carbon.framework", | 260 "Carbon.framework", |
260 "Foundation.framework", | 261 "Foundation.framework", |
261 ] | 262 ] |
262 } else { | 263 } else { |
263 sources -= [ | 264 sources -= [ |
| 265 # FIXME: We will eventually compile this too, but for now it's |
| 266 # only used on mac. |
| 267 "fonts/FontPlatformData.cpp", |
264 "fonts/harfbuzz/HarfBuzzFaceCoreText.cpp", | 268 "fonts/harfbuzz/HarfBuzzFaceCoreText.cpp", |
265 "geometry/cg/FloatPointCG.cpp", | 269 "geometry/cg/FloatPointCG.cpp", |
266 "geometry/cg/FloatRectCG.cpp", | 270 "geometry/cg/FloatRectCG.cpp", |
267 "geometry/cg/FloatSizeCG.cpp", | 271 "geometry/cg/FloatSizeCG.cpp", |
268 "geometry/cg/IntPointCG.cpp", | 272 "geometry/cg/IntPointCG.cpp", |
269 "geometry/cg/IntRectCG.cpp", | 273 "geometry/cg/IntRectCG.cpp", |
270 "geometry/cg/IntSizeCG.cpp", | 274 "geometry/cg/IntSizeCG.cpp", |
271 ] | 275 ] |
272 } | 276 } |
273 | 277 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 #'cflags': ['-marm'], | 409 #'cflags': ['-marm'], |
406 # 'conditions': [ | 410 # 'conditions': [ |
407 # ['OS=="android"', { | 411 # ['OS=="android"', { |
408 # 'cflags!': ['-mthumb'], | 412 # 'cflags!': ['-mthumb'], |
409 # }], | 413 # }], |
410 # ], | 414 # ], |
411 | 415 |
412 deps = [ ":blink_common" ] | 416 deps = [ ":blink_common" ] |
413 } | 417 } |
414 } | 418 } |
OLD | NEW |