| 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 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/skia/gn/shared_sources.gni") | 10 import("//third_party/skia/gn/shared_sources.gni") |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 component("skia") { | 201 component("skia") { |
| 202 sources = [ | 202 sources = [ |
| 203 # Chrome sources. | 203 # Chrome sources. |
| 204 "config/SkUserConfig.h", | 204 "config/SkUserConfig.h", |
| 205 "config/sk_ref_cnt_ext_debug.h", | 205 "config/sk_ref_cnt_ext_debug.h", |
| 206 "config/sk_ref_cnt_ext_release.h", | 206 "config/sk_ref_cnt_ext_release.h", |
| 207 "ext/SkDiscardableMemory_chrome.cc", | 207 "ext/SkDiscardableMemory_chrome.cc", |
| 208 "ext/SkMemory_new_handler.cpp", | 208 "ext/SkMemory_new_handler.cpp", |
| 209 "ext/analysis_canvas.cc", | 209 "ext/analysis_canvas.cc", |
| 210 "ext/benchmarking_canvas.cc", | 210 "ext/benchmarking_canvas.cc", |
| 211 "ext/cdl_canvas.cc", |
| 212 "ext/cdl_canvas.h", |
| 213 "ext/cdl_common.h", |
| 214 "ext/cdl_no_draw_canvas.h", |
| 215 "ext/cdl_paint.cc", |
| 216 "ext/cdl_paint.h", |
| 217 "ext/cdl_picture.cc", |
| 218 "ext/cdl_picture.h", |
| 219 "ext/cdl_picture_buffer.cc", |
| 220 "ext/cdl_picture_buffer.h", |
| 221 "ext/cdl_picture_recorder.cc", |
| 222 "ext/cdl_picture_recorder.h", |
| 223 "ext/cdl_picture_recording_canvas.cc", |
| 224 "ext/cdl_picture_recording_canvas.h", |
| 225 "ext/cdl_shader.cc", |
| 226 "ext/cdl_shader.h", |
| 227 "ext/cdl_surface.cc", |
| 228 "ext/cdl_surface.h", |
| 211 "ext/convolver.cc", | 229 "ext/convolver.cc", |
| 212 "ext/event_tracer_impl.cc", | 230 "ext/event_tracer_impl.cc", |
| 213 "ext/fontmgr_default_linux.cc", | 231 "ext/fontmgr_default_linux.cc", |
| 214 "ext/fontmgr_default_win.cc", | 232 "ext/fontmgr_default_win.cc", |
| 215 "ext/google_logging.cc", | 233 "ext/google_logging.cc", |
| 216 "ext/image_operations.cc", | 234 "ext/image_operations.cc", |
| 217 "ext/opacity_filter_canvas.cc", | 235 "ext/opacity_filter_canvas.cc", |
| 218 "ext/platform_device.cc", | 236 "ext/platform_device.cc", |
| 219 "ext/platform_device_linux.cc", | 237 "ext/platform_device_linux.cc", |
| 220 "ext/platform_device_mac.cc", | 238 "ext/platform_device_mac.cc", |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 751 |
| 734 deps = [ | 752 deps = [ |
| 735 ":skia", | 753 ":skia", |
| 736 "//base", | 754 "//base", |
| 737 "//base/test:test_support", | 755 "//base/test:test_support", |
| 738 "//build/config/sanitizers:deps", | 756 "//build/config/sanitizers:deps", |
| 739 "//build/win:default_exe_manifest", | 757 "//build/win:default_exe_manifest", |
| 740 ] | 758 ] |
| 741 } | 759 } |
| 742 } | 760 } |
| OLD | NEW |