| 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_transform_recorder.cc", | 14 "clip_recorder.cc", |
| 15 "clip_transform_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_observer.h", | 24 "compositor_observer.h", |
| 25 "compositor_switches.cc", | 25 "compositor_switches.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "paint_recorder.cc", | 58 "paint_recorder.cc", |
| 59 "paint_recorder.h", | 59 "paint_recorder.h", |
| 60 "reflector.cc", | 60 "reflector.cc", |
| 61 "reflector.h", | 61 "reflector.h", |
| 62 "scoped_animation_duration_scale_mode.cc", | 62 "scoped_animation_duration_scale_mode.cc", |
| 63 "scoped_animation_duration_scale_mode.h", | 63 "scoped_animation_duration_scale_mode.h", |
| 64 "scoped_layer_animation_settings.cc", | 64 "scoped_layer_animation_settings.cc", |
| 65 "scoped_layer_animation_settings.h", | 65 "scoped_layer_animation_settings.h", |
| 66 "transform_animation_curve_adapter.cc", | 66 "transform_animation_curve_adapter.cc", |
| 67 "transform_animation_curve_adapter.h", | 67 "transform_animation_curve_adapter.h", |
| 68 "transform_recorder.cc", |
| 69 "transform_recorder.h", |
| 68 ] | 70 ] |
| 69 | 71 |
| 70 defines = [ "COMPOSITOR_IMPLEMENTATION" ] | 72 defines = [ "COMPOSITOR_IMPLEMENTATION" ] |
| 71 | 73 |
| 72 deps = [ | 74 deps = [ |
| 73 "//base", | 75 "//base", |
| 74 "//base/third_party/dynamic_annotations", | 76 "//base/third_party/dynamic_annotations", |
| 75 "//cc", | 77 "//cc", |
| 76 "//cc/surfaces", | 78 "//cc/surfaces", |
| 77 "//cc/surfaces:surface_id", | 79 "//cc/surfaces:surface_id", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "//ui/base", | 199 "//ui/base", |
| 198 "//ui/gfx", | 200 "//ui/gfx", |
| 199 "//ui/gfx/geometry", | 201 "//ui/gfx/geometry", |
| 200 "//ui/gl", | 202 "//ui/gl", |
| 201 "//ui/resources", | 203 "//ui/resources", |
| 202 ] | 204 ] |
| 203 if (is_linux) { | 205 if (is_linux) { |
| 204 deps += [ "//third_party/mesa:osmesa" ] | 206 deps += [ "//third_party/mesa:osmesa" ] |
| 205 } | 207 } |
| 206 } | 208 } |
| OLD | NEW |