Chromium Code Reviews| 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") { | |
|
danakj
2017/03/15 00:08:30
Also just checking why a component and not a sourc
chrishtr
2017/03/15 03:26:36
I accidentally added this in the latest patchset.
| |
| 7 output_name = "cc_debug" | |
| 8 sources = [ | |
| 9 "debug_colors.cc", | |
|
danakj
2017/03/15 00:08:00
These should be removed from cc/BUILD.gn then righ
chrishtr
2017/03/15 03:26:36
ditto
| |
| 10 "debug_colors.h", | |
| 11 "picture_debug_util.cc", | |
| 12 "picture_debug_util.h", | |
| 13 "rendering_stats.cc", | |
| 14 "rendering_stats.h", | |
| 15 "rendering_stats_instrumentation.cc", | |
| 16 "rendering_stats_instrumentation.h", | |
| 17 "traced_value.cc", | |
| 18 "traced_value.h", | |
| 19 ] | |
| 20 deps = [ | |
| 21 "//base", | |
| 22 "//skia", | |
| 23 "//ui/gfx/codec", | |
| 24 ] | |
| 25 } | |
| OLD | NEW |