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 | 6 |
7 component("compositor") { | 7 component("compositor") { |
8 sources = [ | 8 sources = [ |
9 "closure_animation_observer.cc", | 9 "closure_animation_observer.cc", |
10 "closure_animation_observer.h", | 10 "closure_animation_observer.h", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 # IDR_BITMAP_BRUSH_IMAGE. | 71 # IDR_BITMAP_BRUSH_IMAGE. |
72 deps += [ | 72 deps += [ |
73 "//ui/resources", | 73 "//ui/resources", |
74 "//third_party/angle:libEGL", | 74 "//third_party/angle:libEGL", |
75 "//third_party/angle:libGLESv2", | 75 "//third_party/angle:libGLESv2", |
76 ] | 76 ] |
77 } | 77 } |
78 } | 78 } |
79 | 79 |
80 source_set("test_support") { | 80 source_set("test_support") { |
| 81 testonly = true |
81 sources = [ | 82 sources = [ |
82 "test/context_factories_for_test.cc", | 83 "test/context_factories_for_test.cc", |
83 "test/context_factories_for_test.h", | 84 "test/context_factories_for_test.h", |
84 "test/draw_waiter_for_test.cc", | 85 "test/draw_waiter_for_test.cc", |
85 "test/draw_waiter_for_test.h", | 86 "test/draw_waiter_for_test.h", |
86 "test/in_process_context_factory.cc", | 87 "test/in_process_context_factory.cc", |
87 "test/in_process_context_factory.h", | 88 "test/in_process_context_factory.h", |
88 "test/layer_animator_test_controller.cc", | 89 "test/layer_animator_test_controller.cc", |
89 "test/layer_animator_test_controller.h", | 90 "test/layer_animator_test_controller.h", |
90 "test/test_compositor_host.h", | 91 "test/test_compositor_host.h", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 # "//ui/gfx", | 156 # "//ui/gfx", |
156 # "//ui/gfx/geometry", | 157 # "//ui/gfx/geometry", |
157 # "//ui/gl", | 158 # "//ui/gl", |
158 # "//ui/resources", | 159 # "//ui/resources", |
159 # ] | 160 # ] |
160 # | 161 # |
161 # if (is_linux) { | 162 # if (is_linux) { |
162 # deps += [ "//third_party/mesa:osmesa" ] | 163 # deps += [ "//third_party/mesa:osmesa" ] |
163 # } | 164 # } |
164 #} | 165 #} |
OLD | NEW |