OLD | NEW |
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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 "ext/bitmap_platform_device.h", | 275 "ext/bitmap_platform_device.h", |
276 "ext/convolver.cc", | 276 "ext/convolver.cc", |
277 "ext/convolver.h", | 277 "ext/convolver.h", |
278 "ext/event_tracer_impl.cc", | 278 "ext/event_tracer_impl.cc", |
279 "ext/event_tracer_impl.h", | 279 "ext/event_tracer_impl.h", |
280 "ext/fontmgr_default_win.cc", | 280 "ext/fontmgr_default_win.cc", |
281 "ext/fontmgr_default_win.h", | 281 "ext/fontmgr_default_win.h", |
282 "ext/google_logging.cc", | 282 "ext/google_logging.cc", |
283 "ext/image_operations.cc", | 283 "ext/image_operations.cc", |
284 "ext/image_operations.h", | 284 "ext/image_operations.h", |
285 "ext/lazy_pixel_ref.cc", | |
286 "ext/lazy_pixel_ref.h", | |
287 "ext/SkThread_chrome.cc", | |
288 "ext/opacity_draw_filter.cc", | 285 "ext/opacity_draw_filter.cc", |
289 "ext/opacity_draw_filter.h", | 286 "ext/opacity_draw_filter.h", |
290 "ext/pixel_ref_utils.cc", | 287 "ext/pixel_ref_utils.cc", |
291 "ext/pixel_ref_utils.h", | 288 "ext/pixel_ref_utils.h", |
292 "ext/platform_canvas.cc", | 289 "ext/platform_canvas.cc", |
293 "ext/platform_canvas.h", | 290 "ext/platform_canvas.h", |
294 "ext/platform_device.cc", | 291 "ext/platform_device.cc", |
295 "ext/platform_device.h", | 292 "ext/platform_device.h", |
296 "ext/platform_device_linux.cc", | 293 "ext/platform_device_linux.cc", |
297 "ext/platform_device_mac.cc", | 294 "ext/platform_device_mac.cc", |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 "//third_party/skia/include/utils/win/SkAutoCoInitialize.h", | 408 "//third_party/skia/include/utils/win/SkAutoCoInitialize.h", |
412 "//third_party/skia/include/utils/win/SkHRESULT.h", | 409 "//third_party/skia/include/utils/win/SkHRESULT.h", |
413 "//third_party/skia/include/utils/win/SkIStream.h", | 410 "//third_party/skia/include/utils/win/SkIStream.h", |
414 "//third_party/skia/include/utils/win/SkTScopedComPtr.h", | 411 "//third_party/skia/include/utils/win/SkTScopedComPtr.h", |
415 "//third_party/skia/src/utils/win/SkAutoCoInitialize.cpp", | 412 "//third_party/skia/src/utils/win/SkAutoCoInitialize.cpp", |
416 "//third_party/skia/src/utils/win/SkIStream.cpp", | 413 "//third_party/skia/src/utils/win/SkIStream.cpp", |
417 "//third_party/skia/src/utils/win/SkWGL_win.cpp", | 414 "//third_party/skia/src/utils/win/SkWGL_win.cpp", |
418 ] | 415 ] |
419 } | 416 } |
420 | 417 |
421 # Fixup Chrome sources. | |
422 if (is_posix) { | |
423 sources -= [ "ext/SkThread_chrome.cc" ] | |
424 } | |
425 if (is_win) { | |
426 sources -= [ "ext/SkThread_chrome.cc" ] | |
427 } | |
428 if (is_android && (!enable_basic_printing && !enable_print_preview)) { | 418 if (is_android && (!enable_basic_printing && !enable_print_preview)) { |
429 sources -= [ "ext/skia_utils_base.cc" ] | 419 sources -= [ "ext/skia_utils_base.cc" ] |
430 } | 420 } |
431 | 421 |
432 # Fixup skia library sources. | 422 # Fixup skia library sources. |
433 if (is_win) { | 423 if (is_win) { |
434 sources -= [ | 424 sources -= [ |
435 "//third_party/skia/src/ports/SkOSFile_posix.cpp", | 425 "//third_party/skia/src/ports/SkOSFile_posix.cpp", |
436 "//third_party/skia/src/ports/SkTime_Unix.cpp", | 426 "//third_party/skia/src/ports/SkTime_Unix.cpp", |
437 "//third_party/skia/src/ports/SkTLS_pthread.cpp", | 427 "//third_party/skia/src/ports/SkTLS_pthread.cpp", |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 ":skia_library_config", | 689 ":skia_library_config", |
700 "//build/config/compiler:no_chromium_code", | 690 "//build/config/compiler:no_chromium_code", |
701 ] | 691 ] |
702 | 692 |
703 deps = [ | 693 deps = [ |
704 "//base", | 694 "//base", |
705 ] | 695 ] |
706 | 696 |
707 visibility = [ ":skia" ] | 697 visibility = [ ":skia" ] |
708 } | 698 } |
OLD | NEW |