| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 # TODO(sky): before we make this real need to remove | 89 # TODO(sky): before we make this real need to remove |
| 90 # IDR_BITMAP_BRUSH_IMAGE. | 90 # IDR_BITMAP_BRUSH_IMAGE. |
| 91 deps += [ | 91 deps += [ |
| 92 "//third_party/angle:libEGL", | 92 "//third_party/angle:libEGL", |
| 93 "//third_party/angle:libGLESv2", | 93 "//third_party/angle:libGLESv2", |
| 94 "//ui/resources", | 94 "//ui/resources", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 } | 97 } |
| 98 | 98 |
| 99 source_set("test_support") { | 99 static_library("test_support") { |
| 100 testonly = true | 100 testonly = true |
| 101 sources = [ | 101 sources = [ |
| 102 "test/context_factories_for_test.cc", | 102 "test/context_factories_for_test.cc", |
| 103 "test/context_factories_for_test.h", | 103 "test/context_factories_for_test.h", |
| 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", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//ui/base", | 196 "//ui/base", |
| 197 "//ui/gfx", | 197 "//ui/gfx", |
| 198 "//ui/gfx/geometry", | 198 "//ui/gfx/geometry", |
| 199 "//ui/gl", | 199 "//ui/gl", |
| 200 "//ui/resources", | 200 "//ui/resources", |
| 201 ] | 201 ] |
| 202 if (is_linux) { | 202 if (is_linux) { |
| 203 deps += [ "//third_party/mesa:osmesa" ] | 203 deps += [ "//third_party/mesa:osmesa" ] |
| 204 } | 204 } |
| 205 } | 205 } |
| OLD | NEW |