Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: ui/compositor/compositor.gyp

Issue 1369393002: Added a CallbackLayerAnimationObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed concerns from patch set 8. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 {
11 'target_name': 'compositor', 11 'target_name': 'compositor',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/cc/cc.gyp:cc', 16 '<(DEPTH)/cc/cc.gyp:cc',
17 '<(DEPTH)/cc/cc.gyp:cc_surfaces', 17 '<(DEPTH)/cc/cc.gyp:cc_surfaces',
18 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common', 18 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common',
19 '<(DEPTH)/skia/skia.gyp:skia', 19 '<(DEPTH)/skia/skia.gyp:skia',
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
22 '<(DEPTH)/ui/gl/gl.gyp:gl', 22 '<(DEPTH)/ui/gl/gl.gyp:gl',
23 ], 23 ],
24 'defines': [ 24 'defines': [
25 'COMPOSITOR_IMPLEMENTATION', 25 'COMPOSITOR_IMPLEMENTATION',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'callback_layer_animation_observer.cc',
29 'callback_layer_animation_observer.h',
28 'canvas_painter.cc', 30 'canvas_painter.cc',
29 'canvas_painter.h', 31 'canvas_painter.h',
30 'clip_transform_recorder.cc', 32 'clip_transform_recorder.cc',
31 'clip_transform_recorder.h', 33 'clip_transform_recorder.h',
32 'closure_animation_observer.cc', 34 'closure_animation_observer.cc',
33 'closure_animation_observer.h', 35 'closure_animation_observer.h',
34 'compositing_recorder.cc', 36 'compositing_recorder.cc',
35 'compositing_recorder.h', 37 'compositing_recorder.h',
36 'compositor.cc', 38 'compositor.cc',
37 'compositor.h', 39 'compositor.h',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 ], 115 ],
114 'sources': [ 116 'sources': [
115 'test/context_factories_for_test.cc', 117 'test/context_factories_for_test.cc',
116 'test/context_factories_for_test.h', 118 'test/context_factories_for_test.h',
117 'test/draw_waiter_for_test.cc', 119 'test/draw_waiter_for_test.cc',
118 'test/draw_waiter_for_test.h', 120 'test/draw_waiter_for_test.h',
119 'test/in_process_context_factory.cc', 121 'test/in_process_context_factory.cc',
120 'test/in_process_context_factory.h', 122 'test/in_process_context_factory.h',
121 'test/in_process_context_provider.cc', 123 'test/in_process_context_provider.cc',
122 'test/in_process_context_provider.h', 124 'test/in_process_context_provider.h',
125 'test/layer_animation_observer_test_api.cc',
126 'test/layer_animation_observer_test_api.h',
123 'test/layer_animator_test_controller.cc', 127 'test/layer_animator_test_controller.cc',
124 'test/layer_animator_test_controller.h', 128 'test/layer_animator_test_controller.h',
125 'test/test_compositor_host.h', 129 'test/test_compositor_host.h',
126 'test/test_compositor_host_mac.mm', 130 'test/test_compositor_host_mac.mm',
127 'test/test_compositor_host_ozone.cc', 131 'test/test_compositor_host_ozone.cc',
128 'test/test_compositor_host_win.cc', 132 'test/test_compositor_host_win.cc',
129 'test/test_compositor_host_x11.cc', 133 'test/test_compositor_host_x11.cc',
130 'test/test_layer_animation_delegate.cc', 134 'test/test_layer_animation_delegate.cc',
131 'test/test_layer_animation_delegate.h', 135 'test/test_layer_animation_delegate.h',
132 'test/test_layer_animation_observer.cc', 136 'test/test_layer_animation_observer.cc',
(...skipping 27 matching lines...) Expand all
160 '<(DEPTH)/testing/gtest.gyp:gtest', 164 '<(DEPTH)/testing/gtest.gyp:gtest',
161 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 165 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
162 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 166 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
163 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 167 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
164 '<(DEPTH)/ui/gl/gl.gyp:gl', 168 '<(DEPTH)/ui/gl/gl.gyp:gl',
165 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 169 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
166 'compositor', 170 'compositor',
167 'compositor_test_support', 171 'compositor_test_support',
168 ], 172 ],
169 'sources': [ 173 'sources': [
174 'callback_layer_animation_observer_unittest.cc',
170 'compositor_unittest.cc', 175 'compositor_unittest.cc',
171 'layer_animation_element_unittest.cc', 176 'layer_animation_element_unittest.cc',
172 'layer_animation_sequence_unittest.cc', 177 'layer_animation_sequence_unittest.cc',
173 'layer_animator_unittest.cc', 178 'layer_animator_unittest.cc',
174 'layer_owner_unittest.cc', 179 'layer_owner_unittest.cc',
175 'layer_unittest.cc', 180 'layer_unittest.cc',
176 'run_all_unittests.cc', 181 'run_all_unittests.cc',
177 'transform_animation_curve_adapter_unittest.cc', 182 'transform_animation_curve_adapter_unittest.cc',
178 ], 183 ],
179 'conditions': [ 184 'conditions': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'dependencies': [ 216 'dependencies': [
212 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 217 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
213 ], 218 ],
214 }], 219 }],
215 ], 220 ],
216 }, 221 },
217 ], 222 ],
218 }], 223 }],
219 ], 224 ],
220 } 225 }
OLDNEW
« no previous file with comments | « ui/compositor/callback_layer_animation_observer_unittest.cc ('k') | ui/compositor/layer_animation_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698