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 component("base") { | 7 component("base") { |
8 output_name = "cc_base" | 8 output_name = "cc_base" |
9 sources = [ | 9 sources = [ |
10 "base_export.h", | 10 "base_export.h", |
11 "completion_event.h", | 11 "completion_event.h", |
12 "container_util.h", | 12 "container_util.h", |
13 "contiguous_container.cc", | 13 "contiguous_container.cc", |
14 "contiguous_container.h", | 14 "contiguous_container.h", |
15 "delayed_unique_notifier.cc", | 15 "delayed_unique_notifier.cc", |
16 "delayed_unique_notifier.h", | 16 "delayed_unique_notifier.h", |
17 "devtools_instrumentation.cc", | 17 "devtools_instrumentation.cc", |
18 "devtools_instrumentation.h", | 18 "devtools_instrumentation.h", |
| 19 "features.cc", |
| 20 "features.h", |
19 "filter_operation.cc", | 21 "filter_operation.cc", |
20 "filter_operation.h", | 22 "filter_operation.h", |
21 "filter_operations.cc", | 23 "filter_operations.cc", |
22 "filter_operations.h", | 24 "filter_operations.h", |
23 "histograms.cc", | 25 "histograms.cc", |
24 "histograms.h", | 26 "histograms.h", |
25 "index_rect.cc", | 27 "index_rect.cc", |
26 "index_rect.h", | 28 "index_rect.h", |
27 "invalidation_region.cc", | 29 "invalidation_region.cc", |
28 "invalidation_region.h", | 30 "invalidation_region.h", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "//base", | 65 "//base", |
64 "//base/third_party/dynamic_annotations", | 66 "//base/third_party/dynamic_annotations", |
65 "//skia", | 67 "//skia", |
66 "//ui/gfx:geometry_skia", | 68 "//ui/gfx:geometry_skia", |
67 "//ui/gfx/animation", | 69 "//ui/gfx/animation", |
68 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
69 ] | 71 ] |
70 | 72 |
71 defines = [ "CC_BASE_IMPLEMENTATION=1" ] | 73 defines = [ "CC_BASE_IMPLEMENTATION=1" ] |
72 } | 74 } |
OLD | NEW |