| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 "ext/fontmgr_default_win.cc", | 267 "ext/fontmgr_default_win.cc", |
| 268 "ext/fontmgr_default_win.h", | 268 "ext/fontmgr_default_win.h", |
| 269 "ext/google_logging.cc", | 269 "ext/google_logging.cc", |
| 270 "ext/image_operations.cc", | 270 "ext/image_operations.cc", |
| 271 "ext/image_operations.h", | 271 "ext/image_operations.h", |
| 272 "ext/lazy_pixel_ref.cc", | 272 "ext/lazy_pixel_ref.cc", |
| 273 "ext/lazy_pixel_ref.h", | 273 "ext/lazy_pixel_ref.h", |
| 274 "ext/SkThread_chrome.cc", | 274 "ext/SkThread_chrome.cc", |
| 275 "ext/opacity_draw_filter.cc", | 275 "ext/opacity_draw_filter.cc", |
| 276 "ext/opacity_draw_filter.h", | 276 "ext/opacity_draw_filter.h", |
| 277 "ext/paint_simplifier.cc", | |
| 278 "ext/paint_simplifier.h", | |
| 279 "ext/pixel_ref_utils.cc", | 277 "ext/pixel_ref_utils.cc", |
| 280 "ext/pixel_ref_utils.h", | 278 "ext/pixel_ref_utils.h", |
| 281 "ext/platform_canvas.cc", | 279 "ext/platform_canvas.cc", |
| 282 "ext/platform_canvas.h", | 280 "ext/platform_canvas.h", |
| 283 "ext/platform_device.cc", | 281 "ext/platform_device.cc", |
| 284 "ext/platform_device.h", | 282 "ext/platform_device.h", |
| 285 "ext/platform_device_linux.cc", | 283 "ext/platform_device_linux.cc", |
| 286 "ext/platform_device_mac.cc", | 284 "ext/platform_device_mac.cc", |
| 287 "ext/platform_device_win.cc", | 285 "ext/platform_device_win.cc", |
| 288 "ext/recursive_gaussian_convolution.cc", | 286 "ext/recursive_gaussian_convolution.cc", |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 ":skia_library_config", | 703 ":skia_library_config", |
| 706 "//build/config/compiler:no_chromium_code" | 704 "//build/config/compiler:no_chromium_code" |
| 707 ] | 705 ] |
| 708 | 706 |
| 709 deps = [ | 707 deps = [ |
| 710 "//base", | 708 "//base", |
| 711 ] | 709 ] |
| 712 | 710 |
| 713 visibility = [ ":skia" ] | 711 visibility = [ ":skia" ] |
| 714 } | 712 } |
| OLD | NEW |