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

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

Issue 1053143002: Make View::Paint use ui::PaintRecorder to access PaintContext's canvas (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: paintrecorder: rebase Created 5 years, 8 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
« no previous file with comments | « ui/compositor/clip_transform_recorder.cc ('k') | ui/compositor/paint_context.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'clip_transform_recorder.cc',
29 'clip_transform_recorder.h',
28 'closure_animation_observer.cc', 30 'closure_animation_observer.cc',
29 'closure_animation_observer.h', 31 'closure_animation_observer.h',
30 'compositor.cc', 32 'compositor.cc',
31 'compositor.h', 33 'compositor.h',
32 'compositor_animation_observer.h', 34 'compositor_animation_observer.h',
33 'compositor_export.h', 35 'compositor_export.h',
34 'compositor_observer.h', 36 'compositor_observer.h',
35 'compositor_switches.cc', 37 'compositor_switches.cc',
36 'compositor_switches.h', 38 'compositor_switches.h',
37 'compositor_vsync_manager.cc', 39 'compositor_vsync_manager.cc',
(...skipping 17 matching lines...) Expand all
55 'layer_animator.h', 57 'layer_animator.h',
56 'layer_animator_collection.cc', 58 'layer_animator_collection.cc',
57 'layer_animator_collection.h', 59 'layer_animator_collection.h',
58 'layer_delegate.h', 60 'layer_delegate.h',
59 'layer_owner.cc', 61 'layer_owner.cc',
60 'layer_owner.h', 62 'layer_owner.h',
61 'layer_tree_owner.cc', 63 'layer_tree_owner.cc',
62 'layer_tree_owner.h', 64 'layer_tree_owner.h',
63 'layer_type.h', 65 'layer_type.h',
64 'paint_context.h', 66 'paint_context.h',
67 'paint_recorder.cc',
68 'paint_recorder.h',
65 'reflector.cc', 69 'reflector.cc',
66 'reflector.h', 70 'reflector.h',
67 'scoped_animation_duration_scale_mode.cc', 71 'scoped_animation_duration_scale_mode.cc',
68 'scoped_animation_duration_scale_mode.h', 72 'scoped_animation_duration_scale_mode.h',
69 'scoped_layer_animation_settings.cc', 73 'scoped_layer_animation_settings.cc',
70 'scoped_layer_animation_settings.h', 74 'scoped_layer_animation_settings.h',
71 'transform_animation_curve_adapter.cc', 75 'transform_animation_curve_adapter.cc',
72 'transform_animation_curve_adapter.h', 76 'transform_animation_curve_adapter.h',
73 ], 77 ],
74 'conditions': [ 78 'conditions': [
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'dependencies': [ 182 'dependencies': [
179 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 183 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
180 ], 184 ],
181 }], 185 }],
182 ], 186 ],
183 }], 187 }],
184 ], 188 ],
185 }, 189 },
186 ], 190 ],
187 } 191 }
OLDNEW
« no previous file with comments | « ui/compositor/clip_transform_recorder.cc ('k') | ui/compositor/paint_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698