| 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 "histograms.cc", | 17 "histograms.cc", |
| 18 "histograms.h", | 18 "histograms.h", |
| 19 "index_rect.cc", | 19 "index_rect.cc", |
| 20 "index_rect.h", | 20 "index_rect.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 46 "tiling_data.h", | 46 "tiling_data.h", |
| 47 "time_util.h", | 47 "time_util.h", |
| 48 "unique_notifier.cc", | 48 "unique_notifier.cc", |
| 49 "unique_notifier.h", | 49 "unique_notifier.h", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 "//base", | 53 "//base", |
| 54 "//base/third_party/dynamic_annotations", | 54 "//base/third_party/dynamic_annotations", |
| 55 "//skia", | 55 "//skia", |
| 56 "//ui/gfx", | 56 "//ui/gfx:geometry_skia", |
| 57 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 defines = [ "CC_IMPLEMENTATION=1" ] | 60 defines = [ "CC_BASE_IMPLEMENTATION=1" ] |
| 61 } | 61 } |
| OLD | NEW |