| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 } | 189 } |
| 190 } | 190 } |
| 191 | 191 |
| 192 component("skia") { | 192 component("skia") { |
| 193 sources = [ | 193 sources = [ |
| 194 # Chrome sources. | 194 # Chrome sources. |
| 195 "config/SkUserConfig.h", | 195 "config/SkUserConfig.h", |
| 196 "config/sk_ref_cnt_ext_debug.h", | 196 "config/sk_ref_cnt_ext_debug.h", |
| 197 "config/sk_ref_cnt_ext_release.h", | 197 "config/sk_ref_cnt_ext_release.h", |
| 198 "ext/SkDiscardableMemory_chrome.cc", | 198 "ext/SkDiscardableMemory_chrome.cc", |
| 199 "ext/SkFutureDrawable.cc", |
| 200 "ext/SkFutureDrawable.h", |
| 199 "ext/SkMemory_new_handler.cpp", | 201 "ext/SkMemory_new_handler.cpp", |
| 200 "ext/analysis_canvas.cc", | 202 "ext/analysis_canvas.cc", |
| 201 "ext/benchmarking_canvas.cc", | 203 "ext/benchmarking_canvas.cc", |
| 202 "ext/convolver.cc", | 204 "ext/convolver.cc", |
| 203 "ext/event_tracer_impl.cc", | 205 "ext/event_tracer_impl.cc", |
| 204 "ext/fontmgr_default_android.cc", | 206 "ext/fontmgr_default_android.cc", |
| 205 "ext/fontmgr_default_linux.cc", | 207 "ext/fontmgr_default_linux.cc", |
| 206 "ext/fontmgr_default_win.cc", | 208 "ext/fontmgr_default_win.cc", |
| 207 "ext/google_logging.cc", | 209 "ext/google_logging.cc", |
| 208 "ext/image_operations.cc", | 210 "ext/image_operations.cc", |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 | 675 |
| 674 deps = [ | 676 deps = [ |
| 675 ":skia", | 677 ":skia", |
| 676 "//base", | 678 "//base", |
| 677 "//base/test:test_support", | 679 "//base/test:test_support", |
| 678 "//build/config/sanitizers:deps", | 680 "//build/config/sanitizers:deps", |
| 679 "//build/win:default_exe_manifest", | 681 "//build/win:default_exe_manifest", |
| 680 ] | 682 ] |
| 681 } | 683 } |
| 682 } | 684 } |
| OLD | NEW |