OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 ], | 83 ], |
84 }, | 84 }, |
85 { | 85 { |
86 'target_name': 'compositor_test_support', | 86 'target_name': 'compositor_test_support', |
87 'type': 'static_library', | 87 'type': 'static_library', |
88 'dependencies': [ | 88 'dependencies': [ |
89 '<(DEPTH)/base/base.gyp:base', | 89 '<(DEPTH)/base/base.gyp:base', |
90 '<(DEPTH)/cc/cc.gyp:cc', | 90 '<(DEPTH)/cc/cc.gyp:cc', |
91 '<(DEPTH)/cc/cc.gyp:cc_surfaces', | 91 '<(DEPTH)/cc/cc.gyp:cc_surfaces', |
92 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 92 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
93 '<(DEPTH)/gpu/blink/gpu_blink.gyp:gpu_blink', | |
94 '<(DEPTH)/skia/skia.gyp:skia', | 93 '<(DEPTH)/skia/skia.gyp:skia', |
95 '<(DEPTH)/testing/gtest.gyp:gtest', | 94 '<(DEPTH)/testing/gtest.gyp:gtest', |
96 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', | 95 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
97 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', | 96 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 97 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
99 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
100 '<(DEPTH)/ui/gl/gl.gyp:gl', | 99 '<(DEPTH)/ui/gl/gl.gyp:gl', |
101 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | |
102 'compositor', | 100 'compositor', |
103 ], | 101 ], |
104 'sources': [ | 102 'sources': [ |
105 'test/context_factories_for_test.cc', | 103 'test/context_factories_for_test.cc', |
106 'test/context_factories_for_test.h', | 104 'test/context_factories_for_test.h', |
107 'test/draw_waiter_for_test.cc', | 105 'test/draw_waiter_for_test.cc', |
108 'test/draw_waiter_for_test.h', | 106 'test/draw_waiter_for_test.h', |
109 'test/in_process_context_factory.cc', | 107 'test/in_process_context_factory.cc', |
110 'test/in_process_context_factory.h', | 108 'test/in_process_context_factory.h', |
| 109 'test/in_process_context_provider.cc', |
| 110 'test/in_process_context_provider.h', |
111 'test/layer_animator_test_controller.cc', | 111 'test/layer_animator_test_controller.cc', |
112 'test/layer_animator_test_controller.h', | 112 'test/layer_animator_test_controller.h', |
113 'test/test_compositor_host.h', | 113 'test/test_compositor_host.h', |
114 'test/test_compositor_host_mac.mm', | 114 'test/test_compositor_host_mac.mm', |
115 'test/test_compositor_host_ozone.cc', | 115 'test/test_compositor_host_ozone.cc', |
116 'test/test_compositor_host_win.cc', | 116 'test/test_compositor_host_win.cc', |
117 'test/test_compositor_host_x11.cc', | 117 'test/test_compositor_host_x11.cc', |
118 'test/test_layer_animation_delegate.cc', | 118 'test/test_layer_animation_delegate.cc', |
119 'test/test_layer_animation_delegate.h', | 119 'test/test_layer_animation_delegate.h', |
120 'test/test_layer_animation_observer.cc', | 120 'test/test_layer_animation_observer.cc', |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 'dependencies': [ | 175 'dependencies': [ |
176 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 176 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
177 ], | 177 ], |
178 }], | 178 }], |
179 ], | 179 ], |
180 }], | 180 }], |
181 ], | 181 ], |
182 }, | 182 }, |
183 ], | 183 ], |
184 } | 184 } |
OLD | NEW |