| 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", |
| 11 "clip_transform_recorder.h", |
| 10 "closure_animation_observer.cc", | 12 "closure_animation_observer.cc", |
| 11 "closure_animation_observer.h", | 13 "closure_animation_observer.h", |
| 12 "compositor.cc", | 14 "compositor.cc", |
| 13 "compositor.h", | 15 "compositor.h", |
| 14 "compositor_animation_observer.h", | 16 "compositor_animation_observer.h", |
| 15 "compositor_export.h", | 17 "compositor_export.h", |
| 16 "compositor_observer.h", | 18 "compositor_observer.h", |
| 17 "compositor_switches.cc", | 19 "compositor_switches.cc", |
| 18 "compositor_switches.h", | 20 "compositor_switches.h", |
| 19 "compositor_vsync_manager.cc", | 21 "compositor_vsync_manager.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 37 "layer_animator.h", | 39 "layer_animator.h", |
| 38 "layer_animator_collection.cc", | 40 "layer_animator_collection.cc", |
| 39 "layer_animator_collection.h", | 41 "layer_animator_collection.h", |
| 40 "layer_delegate.h", | 42 "layer_delegate.h", |
| 41 "layer_owner.cc", | 43 "layer_owner.cc", |
| 42 "layer_owner.h", | 44 "layer_owner.h", |
| 43 "layer_tree_owner.cc", | 45 "layer_tree_owner.cc", |
| 44 "layer_tree_owner.h", | 46 "layer_tree_owner.h", |
| 45 "layer_type.h", | 47 "layer_type.h", |
| 46 "paint_context.h", | 48 "paint_context.h", |
| 49 "paint_recorder.cc", |
| 50 "paint_recorder.h", |
| 47 "reflector.cc", | 51 "reflector.cc", |
| 48 "reflector.h", | 52 "reflector.h", |
| 49 "scoped_animation_duration_scale_mode.cc", | 53 "scoped_animation_duration_scale_mode.cc", |
| 50 "scoped_animation_duration_scale_mode.h", | 54 "scoped_animation_duration_scale_mode.h", |
| 51 "scoped_layer_animation_settings.cc", | 55 "scoped_layer_animation_settings.cc", |
| 52 "scoped_layer_animation_settings.h", | 56 "scoped_layer_animation_settings.h", |
| 53 "transform_animation_curve_adapter.cc", | 57 "transform_animation_curve_adapter.cc", |
| 54 "transform_animation_curve_adapter.h", | 58 "transform_animation_curve_adapter.h", |
| 55 ] | 59 ] |
| 56 | 60 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//ui/gfx/geometry", | 175 "//ui/gfx/geometry", |
| 172 "//ui/gl", | 176 "//ui/gl", |
| 173 "//ui/resources", | 177 "//ui/resources", |
| 174 ] | 178 ] |
| 175 | 179 |
| 176 if (is_linux) { | 180 if (is_linux) { |
| 177 deps += [ "//third_party/mesa:osmesa" ] | 181 deps += [ "//third_party/mesa:osmesa" ] |
| 178 } | 182 } |
| 179 } | 183 } |
| 180 } | 184 } |
| OLD | NEW |