OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("compositor") { | 8 component("compositor") { |
9 sources = [ | 9 sources = [ |
10 "clip_transform_recorder.cc", | 10 "clip_transform_recorder.cc", |
(...skipping 29 matching lines...) Expand all Loading... |
40 "layer_animator.cc", | 40 "layer_animator.cc", |
41 "layer_animator.h", | 41 "layer_animator.h", |
42 "layer_animator_collection.cc", | 42 "layer_animator_collection.cc", |
43 "layer_animator_collection.h", | 43 "layer_animator_collection.h", |
44 "layer_delegate.h", | 44 "layer_delegate.h", |
45 "layer_owner.cc", | 45 "layer_owner.cc", |
46 "layer_owner.h", | 46 "layer_owner.h", |
47 "layer_tree_owner.cc", | 47 "layer_tree_owner.cc", |
48 "layer_tree_owner.h", | 48 "layer_tree_owner.h", |
49 "layer_type.h", | 49 "layer_type.h", |
| 50 "paint_cache.cc", |
| 51 "paint_cache.h", |
50 "paint_context.cc", | 52 "paint_context.cc", |
51 "paint_context.h", | 53 "paint_context.h", |
52 "paint_recorder.cc", | 54 "paint_recorder.cc", |
53 "paint_recorder.h", | 55 "paint_recorder.h", |
54 "reflector.cc", | 56 "reflector.cc", |
55 "reflector.h", | 57 "reflector.h", |
56 "scoped_animation_duration_scale_mode.cc", | 58 "scoped_animation_duration_scale_mode.cc", |
57 "scoped_animation_duration_scale_mode.h", | 59 "scoped_animation_duration_scale_mode.h", |
58 "scoped_layer_animation_settings.cc", | 60 "scoped_layer_animation_settings.cc", |
59 "scoped_layer_animation_settings.h", | 61 "scoped_layer_animation_settings.h", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "//ui/gfx/geometry", | 180 "//ui/gfx/geometry", |
179 "//ui/gl", | 181 "//ui/gl", |
180 "//ui/resources", | 182 "//ui/resources", |
181 ] | 183 ] |
182 | 184 |
183 if (is_linux) { | 185 if (is_linux) { |
184 deps += [ "//third_party/mesa:osmesa" ] | 186 deps += [ "//third_party/mesa:osmesa" ] |
185 } | 187 } |
186 } | 188 } |
187 } | 189 } |
OLD | NEW |