| 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 "callback_layer_animation_observer.cc", | 10 "callback_layer_animation_observer.cc", |
| 11 "callback_layer_animation_observer.h", | 11 "callback_layer_animation_observer.h", |
| 12 "canvas_painter.cc", | 12 "canvas_painter.cc", |
| 13 "canvas_painter.h", | 13 "canvas_painter.h", |
| 14 "clip_recorder.cc", | 14 "clip_recorder.cc", |
| 15 "clip_recorder.h", | 15 "clip_recorder.h", |
| 16 "closure_animation_observer.cc", | 16 "closure_animation_observer.cc", |
| 17 "closure_animation_observer.h", | 17 "closure_animation_observer.h", |
| 18 "compositing_recorder.cc", | 18 "compositing_recorder.cc", |
| 19 "compositing_recorder.h", | 19 "compositing_recorder.h", |
| 20 "compositor.cc", | 20 "compositor.cc", |
| 21 "compositor.h", | 21 "compositor.h", |
| 22 "compositor_animation_observer.h", | 22 "compositor_animation_observer.h", |
| 23 "compositor_export.h", | 23 "compositor_export.h", |
| 24 "compositor_lock.cc", | 24 "compositor_lock.cc", |
| 25 "compositor_lock.h", | 25 "compositor_lock.h", |
| 26 "compositor_observer.h", | 26 "compositor_observer.h", |
| 27 "compositor_switches.cc", | 27 "compositor_switches.cc", |
| 28 "compositor_switches.h", | 28 "compositor_switches.h", |
| 29 "compositor_util.cc", |
| 30 "compositor_util.h", |
| 29 "compositor_vsync_manager.cc", | 31 "compositor_vsync_manager.cc", |
| 30 "compositor_vsync_manager.h", | 32 "compositor_vsync_manager.h", |
| 31 "debug_utils.cc", | 33 "debug_utils.cc", |
| 32 "debug_utils.h", | 34 "debug_utils.h", |
| 33 "dip_util.cc", | 35 "dip_util.cc", |
| 34 "dip_util.h", | 36 "dip_util.h", |
| 35 "float_animation_curve_adapter.cc", | 37 "float_animation_curve_adapter.cc", |
| 36 "float_animation_curve_adapter.h", | 38 "float_animation_curve_adapter.h", |
| 37 "layer.cc", | 39 "layer.cc", |
| 38 "layer.h", | 40 "layer.h", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "//ui/base", | 213 "//ui/base", |
| 212 "//ui/gfx", | 214 "//ui/gfx", |
| 213 "//ui/gfx/geometry", | 215 "//ui/gfx/geometry", |
| 214 "//ui/gl", | 216 "//ui/gl", |
| 215 "//ui/resources", | 217 "//ui/resources", |
| 216 ] | 218 ] |
| 217 if (is_linux) { | 219 if (is_linux) { |
| 218 deps += [ "//third_party/mesa:osmesa" ] | 220 deps += [ "//third_party/mesa:osmesa" ] |
| 219 } | 221 } |
| 220 } | 222 } |
| OLD | NEW |