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

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

Issue 775143003: cc: Implement unified BeginFrame on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add unittest Created 5 years, 9 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 {
(...skipping 16 matching lines...) Expand all
27 'sources': [ 27 'sources': [
28 'closure_animation_observer.cc', 28 'closure_animation_observer.cc',
29 'closure_animation_observer.h', 29 'closure_animation_observer.h',
30 'compositor.cc', 30 'compositor.cc',
31 'compositor.h', 31 'compositor.h',
32 'compositor_animation_observer.h', 32 'compositor_animation_observer.h',
33 'compositor_export.h', 33 'compositor_export.h',
34 'compositor_observer.h', 34 'compositor_observer.h',
35 'compositor_switches.cc', 35 'compositor_switches.cc',
36 'compositor_switches.h', 36 'compositor_switches.h',
37 'compositor_vsync_manager.cc',
38 'compositor_vsync_manager.h',
39 'debug_utils.cc', 37 'debug_utils.cc',
40 'debug_utils.h', 38 'debug_utils.h',
41 'dip_util.cc', 39 'dip_util.cc',
42 'dip_util.h', 40 'dip_util.h',
43 'float_animation_curve_adapter.cc', 41 'float_animation_curve_adapter.cc',
44 'float_animation_curve_adapter.h', 42 'float_animation_curve_adapter.h',
45 'layer.cc', 43 'layer.cc',
46 'layer.h', 44 'layer.h',
47 'layer_animation_delegate.h', 45 'layer_animation_delegate.h',
48 'layer_animation_element.cc', 46 'layer_animation_element.cc',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 '<(DEPTH)/skia/skia.gyp:skia', 91 '<(DEPTH)/skia/skia.gyp:skia',
94 '<(DEPTH)/testing/gtest.gyp:gtest', 92 '<(DEPTH)/testing/gtest.gyp:gtest',
95 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', 93 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal',
96 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 94 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
97 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 95 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 96 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
99 '<(DEPTH)/ui/gl/gl.gyp:gl', 97 '<(DEPTH)/ui/gl/gl.gyp:gl',
100 'compositor', 98 'compositor',
101 ], 99 ],
102 'sources': [ 100 'sources': [
101 'test/compositor_test_api.cc',
102 'test/compositor_test_api.h',
103 'test/context_factories_for_test.cc', 103 'test/context_factories_for_test.cc',
104 'test/context_factories_for_test.h', 104 'test/context_factories_for_test.h',
105 'test/draw_waiter_for_test.cc', 105 'test/draw_waiter_for_test.cc',
106 'test/draw_waiter_for_test.h', 106 'test/draw_waiter_for_test.h',
107 'test/in_process_context_factory.cc', 107 'test/in_process_context_factory.cc',
108 'test/in_process_context_factory.h', 108 'test/in_process_context_factory.h',
109 'test/in_process_context_provider.cc', 109 'test/in_process_context_provider.cc',
110 'test/in_process_context_provider.h', 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',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 '<(DEPTH)/testing/gtest.gyp:gtest', 147 '<(DEPTH)/testing/gtest.gyp:gtest',
148 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 148 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
149 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 149 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
150 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 150 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
151 '<(DEPTH)/ui/gl/gl.gyp:gl', 151 '<(DEPTH)/ui/gl/gl.gyp:gl',
152 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 152 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
153 'compositor', 153 'compositor',
154 'compositor_test_support', 154 'compositor_test_support',
155 ], 155 ],
156 'sources': [ 156 'sources': [
157 'compositor_unittest.cc',
157 'layer_animation_element_unittest.cc', 158 'layer_animation_element_unittest.cc',
158 'layer_animation_sequence_unittest.cc', 159 'layer_animation_sequence_unittest.cc',
159 'layer_animator_unittest.cc', 160 'layer_animator_unittest.cc',
160 'layer_owner_unittest.cc', 161 'layer_owner_unittest.cc',
161 'layer_unittest.cc', 162 'layer_unittest.cc',
162 'run_all_unittests.cc', 163 'run_all_unittests.cc',
163 'transform_animation_curve_adapter_unittest.cc', 164 'transform_animation_curve_adapter_unittest.cc',
164 ], 165 ],
165 'conditions': [ 166 'conditions': [
166 # osmesa GL implementation is used on linux. 167 # osmesa GL implementation is used on linux.
167 ['OS=="linux"', { 168 ['OS=="linux"', {
168 'dependencies': [ 169 'dependencies': [
169 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 170 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
170 ], 171 ],
171 }], 172 }],
172 ['os_posix == 1 and OS != "mac"', { 173 ['os_posix == 1 and OS != "mac"', {
173 'conditions': [ 174 'conditions': [
174 ['use_allocator!="none"', { 175 ['use_allocator!="none"', {
175 'dependencies': [ 176 'dependencies': [
176 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 177 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
177 ], 178 ],
178 }], 179 }],
179 ], 180 ],
180 }], 181 }],
181 ], 182 ],
182 }, 183 },
183 ], 184 ],
184 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698