OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
6 | 6 |
7 cc_source_set("base") { | 7 component("cc_base") { |
enne (OOO)
2017/03/16 00:51:15
This can't be called base because it collides with
chrishtr
2017/03/16 02:00:35
Yes.
b
| |
8 visibility = [ "//cc" ] | |
9 | |
10 sources = [ | 8 sources = [ |
9 "base_export.h", | |
11 "completion_event.h", | 10 "completion_event.h", |
12 "container_util.h", | 11 "container_util.h", |
13 "contiguous_container.cc", | 12 "contiguous_container.cc", |
14 "contiguous_container.h", | 13 "contiguous_container.h", |
15 "delayed_unique_notifier.cc", | 14 "delayed_unique_notifier.cc", |
16 "delayed_unique_notifier.h", | 15 "delayed_unique_notifier.h", |
17 "histograms.cc", | 16 "histograms.cc", |
18 "histograms.h", | 17 "histograms.h", |
19 "index_rect.cc", | 18 "index_rect.cc", |
20 "index_rect.h", | 19 "index_rect.h", |
(...skipping 25 matching lines...) Expand all Loading... | |
46 "tiling_data.h", | 45 "tiling_data.h", |
47 "time_util.h", | 46 "time_util.h", |
48 "unique_notifier.cc", | 47 "unique_notifier.cc", |
49 "unique_notifier.h", | 48 "unique_notifier.h", |
50 ] | 49 ] |
51 | 50 |
52 deps = [ | 51 deps = [ |
53 "//base", | 52 "//base", |
54 "//base/third_party/dynamic_annotations", | 53 "//base/third_party/dynamic_annotations", |
55 "//skia", | 54 "//skia", |
56 "//ui/gfx", | 55 "//ui/gfx:geometry_skia", |
57 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
58 ] | 57 ] |
59 | 58 |
60 defines = [ "CC_IMPLEMENTATION=1" ] | 59 defines = [ "CC_BASE_IMPLEMENTATION=1" ] |
61 } | 60 } |
OLD | NEW |