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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 78 } |
79 } | 79 } |
80 | 80 |
81 source_set("test_support") { | 81 source_set("test_support") { |
82 testonly = true | 82 testonly = true |
83 sources = [ | 83 sources = [ |
84 "test/context_factories_for_test.cc", | 84 "test/context_factories_for_test.cc", |
85 "test/context_factories_for_test.h", | 85 "test/context_factories_for_test.h", |
86 "test/draw_waiter_for_test.cc", | 86 "test/draw_waiter_for_test.cc", |
87 "test/draw_waiter_for_test.h", | 87 "test/draw_waiter_for_test.h", |
| 88 "test/grcontext_for_webgraphicscontext3d.cc", |
| 89 "test/grcontext_for_webgraphicscontext3d.h", |
88 "test/in_process_context_factory.cc", | 90 "test/in_process_context_factory.cc", |
89 "test/in_process_context_factory.h", | 91 "test/in_process_context_factory.h", |
| 92 "test/in_process_context_provider.cc", |
| 93 "test/in_process_context_provider.h", |
90 "test/layer_animator_test_controller.cc", | 94 "test/layer_animator_test_controller.cc", |
91 "test/layer_animator_test_controller.h", | 95 "test/layer_animator_test_controller.h", |
92 "test/test_compositor_host.h", | 96 "test/test_compositor_host.h", |
93 "test/test_compositor_host_mac.mm", | 97 "test/test_compositor_host_mac.mm", |
94 "test/test_compositor_host_win.cc", | 98 "test/test_compositor_host_win.cc", |
95 "test/test_layer_animation_delegate.cc", | 99 "test/test_layer_animation_delegate.cc", |
96 "test/test_layer_animation_delegate.h", | 100 "test/test_layer_animation_delegate.h", |
97 "test/test_layer_animation_observer.cc", | 101 "test/test_layer_animation_observer.cc", |
98 "test/test_layer_animation_observer.h", | 102 "test/test_layer_animation_observer.h", |
99 "test/test_layers.cc", | 103 "test/test_layers.cc", |
(...skipping 13 matching lines...) Expand all Loading... |
113 "//cc/surfaces", | 117 "//cc/surfaces", |
114 "//cc:test_support", | 118 "//cc:test_support", |
115 "//gpu/blink", | 119 "//gpu/blink", |
116 "//skia", | 120 "//skia", |
117 "//testing/gtest", | 121 "//testing/gtest", |
118 "//third_party/WebKit/public:blink_minimal", | 122 "//third_party/WebKit/public:blink_minimal", |
119 "//ui/base", | 123 "//ui/base", |
120 "//ui/gfx", | 124 "//ui/gfx", |
121 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
122 "//ui/gl", | 126 "//ui/gl", |
123 "//webkit/common/gpu", | |
124 ] | 127 ] |
125 | 128 |
126 if (use_x11) { | 129 if (use_x11) { |
127 configs += [ "//build/config/linux:x11" ] | 130 configs += [ "//build/config/linux:x11" ] |
128 deps += [ "//ui/gfx/x" ] | 131 deps += [ "//ui/gfx/x" ] |
129 } | 132 } |
130 | 133 |
131 if (use_ozone) { | 134 if (use_ozone) { |
132 sources += [ "test/test_compositor_host_ozone.cc" ] | 135 sources += [ "test/test_compositor_host_ozone.cc" ] |
133 } else if (use_x11) { | 136 } else if (use_x11) { |
(...skipping 26 matching lines...) Expand all Loading... |
160 # "//ui/gfx", | 163 # "//ui/gfx", |
161 # "//ui/gfx/geometry", | 164 # "//ui/gfx/geometry", |
162 # "//ui/gl", | 165 # "//ui/gl", |
163 # "//ui/resources", | 166 # "//ui/resources", |
164 # ] | 167 # ] |
165 # | 168 # |
166 # if (is_linux) { | 169 # if (is_linux) { |
167 # deps += [ "//third_party/mesa:osmesa" ] | 170 # deps += [ "//third_party/mesa:osmesa" ] |
168 # } | 171 # } |
169 #} | 172 #} |
OLD | NEW |