OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//cc/cc.gni") |
| 6 cc_component("debug") { |
| 7 output_name = "cc_debug" |
| 8 sources = [ |
| 9 "debug_colors.cc", |
| 10 "debug_colors.h", |
| 11 "debug_export.h", |
| 12 "picture_debug_util.cc", |
| 13 "picture_debug_util.h", |
| 14 "rendering_stats.cc", |
| 15 "rendering_stats.h", |
| 16 "rendering_stats_instrumentation.cc", |
| 17 "rendering_stats_instrumentation.h", |
| 18 "traced_value.cc", |
| 19 "traced_value.h", |
| 20 ] |
| 21 deps = [ |
| 22 "//base", |
| 23 "//skia", |
| 24 "//ui/gfx/codec", |
| 25 ] |
| 26 |
| 27 defines = [ "CC_DEBUG_IMPLEMENTATION=1" ] |
| 28 } |
OLD | NEW |