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 = [ |
(...skipping 17 matching lines...) Expand all Loading... |
28 "random_access_list_container.h", | 28 "random_access_list_container.h", |
29 "region.cc", | 29 "region.cc", |
30 "region.h", | 30 "region.h", |
31 "resource_id.h", | 31 "resource_id.h", |
32 "reverse_spiral_iterator.cc", | 32 "reverse_spiral_iterator.cc", |
33 "reverse_spiral_iterator.h", | 33 "reverse_spiral_iterator.h", |
34 "rolling_time_delta_history.cc", | 34 "rolling_time_delta_history.cc", |
35 "rolling_time_delta_history.h", | 35 "rolling_time_delta_history.h", |
36 "rtree.cc", | 36 "rtree.cc", |
37 "rtree.h", | 37 "rtree.h", |
| 38 "scale_translate2d.cc", |
| 39 "scale_translate2d.h", |
38 "simple_enclosed_region.cc", | 40 "simple_enclosed_region.cc", |
39 "simple_enclosed_region.h", | 41 "simple_enclosed_region.h", |
40 "spiral_iterator.cc", | 42 "spiral_iterator.cc", |
41 "spiral_iterator.h", | 43 "spiral_iterator.h", |
42 "switches.cc", | 44 "switches.cc", |
43 "switches.h", | 45 "switches.h", |
44 "synced_property.h", | 46 "synced_property.h", |
45 "tiling_data.cc", | 47 "tiling_data.cc", |
46 "tiling_data.h", | 48 "tiling_data.h", |
47 "time_util.h", | 49 "time_util.h", |
48 "unique_notifier.cc", | 50 "unique_notifier.cc", |
49 "unique_notifier.h", | 51 "unique_notifier.h", |
50 ] | 52 ] |
51 | 53 |
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 |