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("//testing/test.gni") | 7 import("//testing/test.gni") |
8 if (current_cpu == "arm") { | 8 if (current_cpu == "arm") { |
9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 } | 10 } |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 "/wd4800", # forcing value to bool 'true/false'(assigning int to bool). | 273 "/wd4800", # forcing value to bool 'true/false'(assigning int to bool). |
274 ] | 274 ] |
275 } | 275 } |
276 } | 276 } |
277 | 277 |
278 component("skia") { | 278 component("skia") { |
279 sources = [ | 279 sources = [ |
280 # Chrome sources. | 280 # Chrome sources. |
281 "ext/SkDiscardableMemory_chrome.cc", | 281 "ext/SkDiscardableMemory_chrome.cc", |
282 "ext/SkMemory_new_handler.cpp", | 282 "ext/SkMemory_new_handler.cpp", |
| 283 "ext/SkTraceMemoryDump_chrome.cc", |
283 "ext/analysis_canvas.cc", | 284 "ext/analysis_canvas.cc", |
284 "ext/benchmarking_canvas.cc", | 285 "ext/benchmarking_canvas.cc", |
285 "ext/convolver.cc", | 286 "ext/convolver.cc", |
286 "ext/event_tracer_impl.cc", | 287 "ext/event_tracer_impl.cc", |
287 "ext/fontmgr_default_win.cc", | 288 "ext/fontmgr_default_win.cc", |
288 "ext/google_logging.cc", | 289 "ext/google_logging.cc", |
289 "ext/image_operations.cc", | 290 "ext/image_operations.cc", |
290 "ext/opacity_filter_canvas.cc", | 291 "ext/opacity_filter_canvas.cc", |
291 "ext/pixel_ref_utils.cc", | 292 "ext/pixel_ref_utils.cc", |
292 "ext/platform_device.cc", | 293 "ext/platform_device.cc", |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 665 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
665 ] | 666 ] |
666 | 667 |
667 deps = [ | 668 deps = [ |
668 ":skia", | 669 ":skia", |
669 "//base", | 670 "//base", |
670 "//base/test:test_support", | 671 "//base/test:test_support", |
671 ] | 672 ] |
672 } | 673 } |
673 } | 674 } |
OLD | NEW |