| 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 cc_source_set("base") { |
| 8 visibility = [ "//cc" ] | 8 visibility = [ "//cc" ] |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 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", |
| 21 "invalidation_region.cc", | 21 "invalidation_region.cc", |
| 22 "invalidation_region.h", | 22 "invalidation_region.h", |
| 23 "list_container.h", | 23 "list_container.h", |
| 24 "list_container_helper.cc", | 24 "list_container_helper.cc", |
| 25 "list_container_helper.h", | 25 "list_container_helper.h", |
| 26 "math_util.cc", | 26 "math_util.cc", |
| 27 "math_util.h", | 27 "math_util.h", |
| 28 "pyramid_sequence.cc", |
| 29 "pyramid_sequence.h", |
| 28 "random_access_list_container.h", | 30 "random_access_list_container.h", |
| 29 "region.cc", | 31 "region.cc", |
| 30 "region.h", | 32 "region.h", |
| 31 "resource_id.h", | 33 "resource_id.h", |
| 32 "reverse_spiral_iterator.cc", | 34 "reverse_spiral_iterator.cc", |
| 33 "reverse_spiral_iterator.h", | 35 "reverse_spiral_iterator.h", |
| 34 "rolling_time_delta_history.cc", | 36 "rolling_time_delta_history.cc", |
| 35 "rolling_time_delta_history.h", | 37 "rolling_time_delta_history.h", |
| 36 "rtree.cc", | 38 "rtree.cc", |
| 37 "rtree.h", | 39 "rtree.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 52 deps = [ | 54 deps = [ |
| 53 "//base", | 55 "//base", |
| 54 "//base/third_party/dynamic_annotations", | 56 "//base/third_party/dynamic_annotations", |
| 55 "//skia", | 57 "//skia", |
| 56 "//ui/gfx", | 58 "//ui/gfx", |
| 57 "//ui/gfx/geometry", | 59 "//ui/gfx/geometry", |
| 58 ] | 60 ] |
| 59 | 61 |
| 60 defines = [ "CC_IMPLEMENTATION=1" ] | 62 defines = [ "CC_IMPLEMENTATION=1" ] |
| 61 } | 63 } |
| OLD | NEW |