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

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

Issue 8247009: Explicit animation support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix VS2010 Created 9 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/animation/tween.cc ('k') | ui/gfx/compositor/layer.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 9 'target_defaults': {
10 'sources/': [ 10 'sources/': [
(...skipping 26 matching lines...) Expand all
37 'compositor.cc', 37 'compositor.cc',
38 'compositor.h', 38 'compositor.h',
39 'compositor_export.h', 39 'compositor_export.h',
40 'compositor_gl.cc', 40 'compositor_gl.cc',
41 'compositor_gl.h', 41 'compositor_gl.h',
42 'compositor_observer.h', 42 'compositor_observer.h',
43 'compositor_stub.cc', 43 'compositor_stub.cc',
44 'compositor_win.cc', 44 'compositor_win.cc',
45 'layer.cc', 45 'layer.cc',
46 'layer.h', 46 'layer.h',
47 'layer_animation_delegate.h',
48 'layer_animation_element.cc',
49 'layer_animation_element.h',
50 'layer_animation_manager.cc',
51 'layer_animation_manager.h',
52 'layer_animation_sequence.cc',
53 'layer_animation_sequence.h',
47 'layer_animator.cc', 54 'layer_animator.cc',
48 'layer_animator.h', 55 'layer_animator.h',
49 'layer_animator_delegate.h',
50 ], 56 ],
51 'conditions': [ 57 'conditions': [
52 ['os_posix == 1 and OS != "mac"', { 58 ['os_posix == 1 and OS != "mac"', {
53 'sources!': [ 59 'sources!': [
54 'compositor_stub.cc', 60 'compositor_stub.cc',
55 ], 61 ],
56 }], 62 }],
57 ['OS == "win" and views_compositor == 1', { 63 ['OS == "win" and views_compositor == 1', {
58 'sources!': [ 64 'sources!': [
59 'compositor_stub.cc', 65 'compositor_stub.cc',
(...skipping 27 matching lines...) Expand all
87 '<(DEPTH)/base/base.gyp:test_support_base', 93 '<(DEPTH)/base/base.gyp:test_support_base',
88 '<(DEPTH)/skia/skia.gyp:skia', 94 '<(DEPTH)/skia/skia.gyp:skia',
89 '<(DEPTH)/testing/gtest.gyp:gtest', 95 '<(DEPTH)/testing/gtest.gyp:gtest',
90 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', 96 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
91 '<(DEPTH)/ui/ui.gyp:gfx_resources', 97 '<(DEPTH)/ui/ui.gyp:gfx_resources',
92 '<(DEPTH)/ui/ui.gyp:ui', 98 '<(DEPTH)/ui/ui.gyp:ui',
93 '<(DEPTH)/ui/ui.gyp:ui_resources', 99 '<(DEPTH)/ui/ui.gyp:ui_resources',
94 'compositor', 100 'compositor',
95 ], 101 ],
96 'sources': [ 102 'sources': [
103 'layer_animation_element_unittest.cc',
104 'layer_animation_sequence_unittest.cc',
105 'layer_animator_unittest.cc',
97 'layer_unittest.cc', 106 'layer_unittest.cc',
98 'run_all_unittests.cc', 107 'run_all_unittests.cc',
99 'test_compositor.cc', 108 'test_compositor.cc',
100 'test_compositor.h', 109 'test_compositor.h',
101 'test_compositor_host.h', 110 'test_compositor_host.h',
102 'test_compositor_host_linux.cc', 111 'test_compositor_host_linux.cc',
103 'test_compositor_host_win.cc', 112 'test_compositor_host_win.cc',
113 'test_layer_animation_delegate.cc',
114 'test_layer_animation_delegate.h',
104 'test_suite.cc', 115 'test_suite.cc',
105 'test_suite.h', 116 'test_suite.h',
106 'test_texture.cc', 117 'test_texture.cc',
107 'test_texture.h', 118 'test_texture.h',
119 'test_utils.cc',
120 'test_utils.h',
108 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 121 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
109 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 122 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
110 ], 123 ],
111 'conditions': [ 124 'conditions': [
112 # osmesa GL implementation is used on linux. 125 # osmesa GL implementation is used on linux.
113 ['OS=="linux"', { 126 ['OS=="linux"', {
114 'dependencies': [ 127 'dependencies': [
115 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 128 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
116 ], 129 ],
117 }], 130 }],
118 ['OS!="mac"', { 131 ['OS!="mac"', {
119 'dependencies': [ 132 'dependencies': [
120 '<(DEPTH)/chrome/chrome.gyp:packed_resources', 133 '<(DEPTH)/chrome/chrome.gyp:packed_resources',
121 ], 134 ],
122 }], 135 }],
123 ], 136 ],
124 }, 137 },
125 ], 138 ],
126 } 139 }
OLDNEW
« no previous file with comments | « ui/base/animation/tween.cc ('k') | ui/gfx/compositor/layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698