| 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", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "layer_animator_collection.h", | 47 "layer_animator_collection.h", |
| 48 "layer_delegate.cc", | 48 "layer_delegate.cc", |
| 49 "layer_delegate.h", | 49 "layer_delegate.h", |
| 50 "layer_observer.h", | 50 "layer_observer.h", |
| 51 "layer_owner.cc", | 51 "layer_owner.cc", |
| 52 "layer_owner.h", | 52 "layer_owner.h", |
| 53 "layer_threaded_animation_delegate.h", | 53 "layer_threaded_animation_delegate.h", |
| 54 "layer_tree_owner.cc", | 54 "layer_tree_owner.cc", |
| 55 "layer_tree_owner.h", | 55 "layer_tree_owner.h", |
| 56 "layer_type.h", | 56 "layer_type.h", |
| 57 "overscroll/ui_input_handler.cc", |
| 58 "overscroll/ui_input_handler.h", |
| 59 "overscroll/ui_scroll_input_manager.cc", |
| 60 "overscroll/ui_scroll_input_manager.h", |
| 57 "paint_cache.cc", | 61 "paint_cache.cc", |
| 58 "paint_cache.h", | 62 "paint_cache.h", |
| 59 "paint_context.cc", | 63 "paint_context.cc", |
| 60 "paint_context.h", | 64 "paint_context.h", |
| 61 "paint_recorder.cc", | 65 "paint_recorder.cc", |
| 62 "paint_recorder.h", | 66 "paint_recorder.h", |
| 63 "reflector.cc", | 67 "reflector.cc", |
| 64 "reflector.h", | 68 "reflector.h", |
| 65 "scoped_animation_duration_scale_mode.cc", | 69 "scoped_animation_duration_scale_mode.cc", |
| 66 "scoped_animation_duration_scale_mode.h", | 70 "scoped_animation_duration_scale_mode.h", |
| 67 "scoped_layer_animation_settings.cc", | 71 "scoped_layer_animation_settings.cc", |
| 68 "scoped_layer_animation_settings.h", | 72 "scoped_layer_animation_settings.h", |
| 69 "transform_animation_curve_adapter.cc", | 73 "transform_animation_curve_adapter.cc", |
| 70 "transform_animation_curve_adapter.h", | 74 "transform_animation_curve_adapter.h", |
| 71 "transform_recorder.cc", | 75 "transform_recorder.cc", |
| 72 "transform_recorder.h", | 76 "transform_recorder.h", |
| 73 ] | 77 ] |
| 74 | 78 |
| 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] | 79 defines = [ "COMPOSITOR_IMPLEMENTATION" ] |
| 76 | 80 |
| 77 deps = [ | 81 deps = [ |
| 78 "//base", | 82 "//base", |
| 79 "//base/third_party/dynamic_annotations", | 83 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 84 "//cc", |
| 81 "//cc/animation", | 85 "//cc/animation", |
| 82 "//cc/surfaces", | 86 "//cc/surfaces", |
| 83 "//cc/surfaces:surface_id", | 87 "//cc/surfaces:surface_id", |
| 84 "//gpu/command_buffer/common", | 88 "//gpu/command_buffer/common", |
| 85 "//skia", | 89 "//skia", |
| 90 "//ui/events", |
| 86 "//ui/gfx", | 91 "//ui/gfx", |
| 87 "//ui/gfx/geometry", | 92 "//ui/gfx/geometry", |
| 88 "//ui/gl", | 93 "//ui/gl", |
| 89 ] | 94 ] |
| 90 | 95 |
| 91 if (is_win && use_aura) { | 96 if (is_win && use_aura) { |
| 92 # TODO(sky): before we make this real need to remove | 97 # TODO(sky): before we make this real need to remove |
| 93 # IDR_BITMAP_BRUSH_IMAGE. | 98 # IDR_BITMAP_BRUSH_IMAGE. |
| 94 deps += [ | 99 deps += [ |
| 95 "//third_party/angle:libEGL", | 100 "//third_party/angle:libEGL", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "//ui/base", | 204 "//ui/base", |
| 200 "//ui/gfx", | 205 "//ui/gfx", |
| 201 "//ui/gfx/geometry", | 206 "//ui/gfx/geometry", |
| 202 "//ui/gl", | 207 "//ui/gl", |
| 203 "//ui/resources", | 208 "//ui/resources", |
| 204 ] | 209 ] |
| 205 if (is_linux) { | 210 if (is_linux) { |
| 206 deps += [ "//third_party/mesa:osmesa" ] | 211 deps += [ "//third_party/mesa:osmesa" ] |
| 207 } | 212 } |
| 208 } | 213 } |
| OLD | NEW |