| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "test/draw_waiter_for_test.cc", | 104 "test/draw_waiter_for_test.cc", |
| 105 "test/draw_waiter_for_test.h", | 105 "test/draw_waiter_for_test.h", |
| 106 "test/in_process_context_factory.cc", | 106 "test/in_process_context_factory.cc", |
| 107 "test/in_process_context_factory.h", | 107 "test/in_process_context_factory.h", |
| 108 "test/in_process_context_provider.cc", | 108 "test/in_process_context_provider.cc", |
| 109 "test/in_process_context_provider.h", | 109 "test/in_process_context_provider.h", |
| 110 "test/layer_animation_observer_test_api.cc", | 110 "test/layer_animation_observer_test_api.cc", |
| 111 "test/layer_animation_observer_test_api.h", | 111 "test/layer_animation_observer_test_api.h", |
| 112 "test/layer_animator_test_controller.cc", | 112 "test/layer_animator_test_controller.cc", |
| 113 "test/layer_animator_test_controller.h", | 113 "test/layer_animator_test_controller.h", |
| 114 "test/multi_layer_animator_test_controller.cc", |
| 115 "test/multi_layer_animator_test_controller.h", |
| 116 "test/multi_layer_animator_test_controller_delegate.h", |
| 114 "test/test_compositor_host.h", | 117 "test/test_compositor_host.h", |
| 115 "test/test_compositor_host_android.cc", | 118 "test/test_compositor_host_android.cc", |
| 116 "test/test_compositor_host_mac.mm", | 119 "test/test_compositor_host_mac.mm", |
| 117 "test/test_compositor_host_win.cc", | 120 "test/test_compositor_host_win.cc", |
| 118 "test/test_layer_animation_delegate.cc", | 121 "test/test_layer_animation_delegate.cc", |
| 119 "test/test_layer_animation_delegate.h", | 122 "test/test_layer_animation_delegate.h", |
| 120 "test/test_layer_animation_observer.cc", | 123 "test/test_layer_animation_observer.cc", |
| 121 "test/test_layer_animation_observer.h", | 124 "test/test_layer_animation_observer.h", |
| 122 "test/test_layers.cc", | 125 "test/test_layers.cc", |
| 123 "test/test_layers.h", | 126 "test/test_layers.h", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 "//ui/base", | 195 "//ui/base", |
| 193 "//ui/gfx", | 196 "//ui/gfx", |
| 194 "//ui/gfx/geometry", | 197 "//ui/gfx/geometry", |
| 195 "//ui/gl", | 198 "//ui/gl", |
| 196 "//ui/resources", | 199 "//ui/resources", |
| 197 ] | 200 ] |
| 198 if (is_linux) { | 201 if (is_linux) { |
| 199 deps += [ "//third_party/mesa:osmesa" ] | 202 deps += [ "//third_party/mesa:osmesa" ] |
| 200 } | 203 } |
| 201 } | 204 } |
| OLD | NEW |