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

Side by Side Diff: skia/BUILD.gn

Issue 344653002: Customize SkFontMgr::Factory to control DirectWrite vs. GDI selection (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unnecessary includes Created 6 years, 6 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 if (cpu_arch == "arm") { 7 if (cpu_arch == "arm") {
8 import("//build/config/arm.gni") 8 import("//build/config/arm.gni")
9 } 9 }
10 10
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 "ext/bitmap_platform_device_mac.cc", 253 "ext/bitmap_platform_device_mac.cc",
254 "ext/bitmap_platform_device_mac.h", 254 "ext/bitmap_platform_device_mac.h",
255 #"ext/bitmap_platform_device_skia.cc", 255 #"ext/bitmap_platform_device_skia.cc",
256 #"ext/bitmap_platform_device_skia.h", 256 #"ext/bitmap_platform_device_skia.h",
257 "ext/bitmap_platform_device_win.cc", 257 "ext/bitmap_platform_device_win.cc",
258 "ext/bitmap_platform_device_win.h", 258 "ext/bitmap_platform_device_win.h",
259 "ext/convolver.cc", 259 "ext/convolver.cc",
260 "ext/convolver.h", 260 "ext/convolver.h",
261 "ext/event_tracer_impl.cc", 261 "ext/event_tracer_impl.cc",
262 "ext/event_tracer_impl.h", 262 "ext/event_tracer_impl.h",
263 "ext/fontmgr_default_win.cc",
264 "ext/fontmgr_default_win.h",
263 "ext/google_logging.cc", 265 "ext/google_logging.cc",
264 "ext/image_operations.cc", 266 "ext/image_operations.cc",
265 "ext/image_operations.h", 267 "ext/image_operations.h",
266 "ext/lazy_pixel_ref.cc", 268 "ext/lazy_pixel_ref.cc",
267 "ext/lazy_pixel_ref.h", 269 "ext/lazy_pixel_ref.h",
268 "ext/SkThread_chrome.cc", 270 "ext/SkThread_chrome.cc",
269 "ext/opacity_draw_filter.cc", 271 "ext/opacity_draw_filter.cc",
270 "ext/opacity_draw_filter.h", 272 "ext/opacity_draw_filter.h",
271 "ext/paint_simplifier.cc", 273 "ext/paint_simplifier.cc",
272 "ext/paint_simplifier.h", 274 "ext/paint_simplifier.h",
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 # Fixup skia library sources. 420 # Fixup skia library sources.
419 if (is_win) { 421 if (is_win) {
420 sources -= [ 422 sources -= [
421 "//third_party/skia/src/ports/SkOSFile_posix.cpp", 423 "//third_party/skia/src/ports/SkOSFile_posix.cpp",
422 "//third_party/skia/src/ports/SkTime_Unix.cpp", 424 "//third_party/skia/src/ports/SkTime_Unix.cpp",
423 "//third_party/skia/src/ports/SkTLS_pthread.cpp", 425 "//third_party/skia/src/ports/SkTLS_pthread.cpp",
424 ] 426 ]
425 } else { 427 } else {
426 sources -= [ 428 sources -= [
427 "//third_party/skia/src/ports/SkFontHost_win.cpp", 429 "//third_party/skia/src/ports/SkFontHost_win.cpp",
428 "//third_party/skia/src/ports/SkFontMgr_default_gdi.cpp",
429 "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp", 430 "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp",
430 "//third_party/skia/src/ports/SkOSFile_win.cpp", 431 "//third_party/skia/src/ports/SkOSFile_win.cpp",
431 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp", 432 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp",
432 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp", 433 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp",
433 "//third_party/skia/src/ports/SkScalerContext_win_dw.h", 434 "//third_party/skia/src/ports/SkScalerContext_win_dw.h",
434 "//third_party/skia/src/ports/SkTLS_win.cpp", 435 "//third_party/skia/src/ports/SkTLS_win.cpp",
435 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp", 436 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp",
436 "//third_party/skia/src/ports/SkTypeface_win_dw.h", 437 "//third_party/skia/src/ports/SkTypeface_win_dw.h",
437 ] 438 ]
438 } 439 }
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 ":skia_config", 641 ":skia_config",
641 "//build/config/compiler:no_chromium_code" 642 "//build/config/compiler:no_chromium_code"
642 ] 643 ]
643 644
644 deps = [ 645 deps = [
645 "//base", 646 "//base",
646 ] 647 ]
647 648
648 visibility = ":skia" 649 visibility = ":skia"
649 } 650 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698