| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 } | 103 } |
| 104 } | 104 } |
| 105 | 105 |
| 106 static_library("test_support") { | 106 static_library("test_support") { |
| 107 testonly = true | 107 testonly = true |
| 108 sources = [ | 108 sources = [ |
| 109 "test/context_factories_for_test.cc", | 109 "test/context_factories_for_test.cc", |
| 110 "test/context_factories_for_test.h", | 110 "test/context_factories_for_test.h", |
| 111 "test/draw_waiter_for_test.cc", | 111 "test/draw_waiter_for_test.cc", |
| 112 "test/draw_waiter_for_test.h", | 112 "test/draw_waiter_for_test.h", |
| 113 "test/fake_context_factory.cc", |
| 114 "test/fake_context_factory.h", |
| 113 "test/in_process_context_factory.cc", | 115 "test/in_process_context_factory.cc", |
| 114 "test/in_process_context_factory.h", | 116 "test/in_process_context_factory.h", |
| 115 "test/in_process_context_provider.cc", | 117 "test/in_process_context_provider.cc", |
| 116 "test/in_process_context_provider.h", | 118 "test/in_process_context_provider.h", |
| 117 "test/layer_animation_observer_test_api.cc", | 119 "test/layer_animation_observer_test_api.cc", |
| 118 "test/layer_animation_observer_test_api.h", | 120 "test/layer_animation_observer_test_api.h", |
| 119 "test/layer_animator_test_controller.cc", | 121 "test/layer_animator_test_controller.cc", |
| 120 "test/layer_animator_test_controller.h", | 122 "test/layer_animator_test_controller.h", |
| 121 "test/multi_layer_animator_test_controller.cc", | 123 "test/multi_layer_animator_test_controller.cc", |
| 122 "test/multi_layer_animator_test_controller.h", | 124 "test/multi_layer_animator_test_controller.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "//ui/base", | 207 "//ui/base", |
| 206 "//ui/gfx", | 208 "//ui/gfx", |
| 207 "//ui/gfx/geometry", | 209 "//ui/gfx/geometry", |
| 208 "//ui/gl", | 210 "//ui/gl", |
| 209 "//ui/resources", | 211 "//ui/resources", |
| 210 ] | 212 ] |
| 211 if (is_linux) { | 213 if (is_linux) { |
| 212 deps += [ "//third_party/mesa:osmesa" ] | 214 deps += [ "//third_party/mesa:osmesa" ] |
| 213 } | 215 } |
| 214 } | 216 } |
| OLD | NEW |