| 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("base") { |
| 8 visibility = [ "//cc" ] | 8 output_name = "cc_base" |
| 9 | |
| 10 sources = [ | 9 sources = [ |
| 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 "filter_operation.cc", |
| 18 "filter_operation.h", |
| 19 "filter_operations.cc", |
| 20 "filter_operations.h", |
| 17 "histograms.cc", | 21 "histograms.cc", |
| 18 "histograms.h", | 22 "histograms.h", |
| 19 "index_rect.cc", | 23 "index_rect.cc", |
| 20 "index_rect.h", | 24 "index_rect.h", |
| 21 "invalidation_region.cc", | 25 "invalidation_region.cc", |
| 22 "invalidation_region.h", | 26 "invalidation_region.h", |
| 23 "list_container.h", | 27 "list_container.h", |
| 24 "list_container_helper.cc", | 28 "list_container_helper.cc", |
| 25 "list_container_helper.h", | 29 "list_container_helper.h", |
| 26 "math_util.cc", | 30 "math_util.cc", |
| 27 "math_util.h", | 31 "math_util.h", |
| 28 "random_access_list_container.h", | 32 "random_access_list_container.h", |
| 29 "region.cc", | 33 "region.cc", |
| 30 "region.h", | 34 "region.h", |
| 35 "render_surface_filters.cc", |
| 36 "render_surface_filters.h", |
| 31 "resource_id.h", | 37 "resource_id.h", |
| 32 "reverse_spiral_iterator.cc", | 38 "reverse_spiral_iterator.cc", |
| 33 "reverse_spiral_iterator.h", | 39 "reverse_spiral_iterator.h", |
| 34 "rolling_time_delta_history.cc", | 40 "rolling_time_delta_history.cc", |
| 35 "rolling_time_delta_history.h", | 41 "rolling_time_delta_history.h", |
| 36 "rtree.cc", | 42 "rtree.cc", |
| 37 "rtree.h", | 43 "rtree.h", |
| 38 "simple_enclosed_region.cc", | 44 "simple_enclosed_region.cc", |
| 39 "simple_enclosed_region.h", | 45 "simple_enclosed_region.h", |
| 40 "spiral_iterator.cc", | 46 "spiral_iterator.cc", |
| 41 "spiral_iterator.h", | 47 "spiral_iterator.h", |
| 42 "switches.cc", | 48 "switches.cc", |
| 43 "switches.h", | 49 "switches.h", |
| 44 "synced_property.h", | 50 "synced_property.h", |
| 45 "tiling_data.cc", | 51 "tiling_data.cc", |
| 46 "tiling_data.h", | 52 "tiling_data.h", |
| 47 "time_util.h", | 53 "time_util.h", |
| 48 "unique_notifier.cc", | 54 "unique_notifier.cc", |
| 49 "unique_notifier.h", | 55 "unique_notifier.h", |
| 50 ] | 56 ] |
| 51 | 57 |
| 52 deps = [ | 58 deps = [ |
| 53 "//base", | 59 "//base", |
| 54 "//base/third_party/dynamic_annotations", | 60 "//base/third_party/dynamic_annotations", |
| 55 "//skia", | 61 "//skia", |
| 56 "//ui/gfx", | 62 "//ui/gfx:geometry_skia", |
| 63 "//ui/gfx/animation", |
| 57 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
| 58 ] | 65 ] |
| 59 | 66 |
| 60 defines = [ "CC_IMPLEMENTATION=1" ] | 67 defines = [ "CC_BASE_IMPLEMENTATION=1" ] |
| 61 } | 68 } |
| OLD | NEW |