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 "closure_animation_observer.cc", | 10 "closure_animation_observer.cc", |
11 "closure_animation_observer.h", | 11 "closure_animation_observer.h", |
12 "compositor.cc", | 12 "compositor.cc", |
13 "compositor.h", | 13 "compositor.h", |
14 "compositor_animation_observer.h", | 14 "compositor_animation_observer.h", |
15 "compositor_export.h", | 15 "compositor_export.h", |
16 "compositor_observer.h", | 16 "compositor_observer.h", |
17 "compositor_switches.cc", | 17 "compositor_switches.cc", |
18 "compositor_switches.h", | 18 "compositor_switches.h", |
19 "compositor_vsync_manager.cc", | |
20 "compositor_vsync_manager.h", | |
21 "debug_utils.cc", | 19 "debug_utils.cc", |
22 "debug_utils.h", | 20 "debug_utils.h", |
23 "dip_util.cc", | 21 "dip_util.cc", |
24 "dip_util.h", | 22 "dip_util.h", |
25 "float_animation_curve_adapter.cc", | 23 "float_animation_curve_adapter.cc", |
26 "float_animation_curve_adapter.h", | 24 "float_animation_curve_adapter.h", |
27 "layer.cc", | 25 "layer.cc", |
28 "layer.h", | 26 "layer.h", |
29 "layer_animation_delegate.h", | 27 "layer_animation_delegate.h", |
30 "layer_animation_element.cc", | 28 "layer_animation_element.cc", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "//ui/gfx/geometry", | 166 "//ui/gfx/geometry", |
169 "//ui/gl", | 167 "//ui/gl", |
170 "//ui/resources", | 168 "//ui/resources", |
171 ] | 169 ] |
172 | 170 |
173 if (is_linux) { | 171 if (is_linux) { |
174 deps += [ "//third_party/mesa:osmesa" ] | 172 deps += [ "//third_party/mesa:osmesa" ] |
175 } | 173 } |
176 } | 174 } |
177 } | 175 } |
OLD | NEW |