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

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: Added new preemption strategy: replace queued animations. 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
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_sequence.cc',
51 'layer_animation_sequence.h',
47 'layer_animator.cc', 52 'layer_animator.cc',
48 'layer_animator.h', 53 'layer_animator.h',
49 'layer_animator_delegate.h',
50 ], 54 ],
51 'conditions': [ 55 'conditions': [
52 ['os_posix == 1 and OS != "mac"', { 56 ['os_posix == 1 and OS != "mac"', {
53 'sources!': [ 57 'sources!': [
54 'compositor_stub.cc', 58 'compositor_stub.cc',
55 ], 59 ],
56 }], 60 }],
57 ['OS == "win" and views_compositor == 1', { 61 ['OS == "win" and views_compositor == 1', {
58 'sources!': [ 62 'sources!': [
59 'compositor_stub.cc', 63 'compositor_stub.cc',
(...skipping 27 matching lines...) Expand all
87 '<(DEPTH)/base/base.gyp:test_support_base', 91 '<(DEPTH)/base/base.gyp:test_support_base',
88 '<(DEPTH)/skia/skia.gyp:skia', 92 '<(DEPTH)/skia/skia.gyp:skia',
89 '<(DEPTH)/testing/gtest.gyp:gtest', 93 '<(DEPTH)/testing/gtest.gyp:gtest',
90 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', 94 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
91 '<(DEPTH)/ui/ui.gyp:gfx_resources', 95 '<(DEPTH)/ui/ui.gyp:gfx_resources',
92 '<(DEPTH)/ui/ui.gyp:ui', 96 '<(DEPTH)/ui/ui.gyp:ui',
93 '<(DEPTH)/ui/ui.gyp:ui_resources', 97 '<(DEPTH)/ui/ui.gyp:ui_resources',
94 'compositor', 98 'compositor',
95 ], 99 ],
96 'sources': [ 100 'sources': [
101 'layer_animation_unittest.cc',
97 'layer_unittest.cc', 102 'layer_unittest.cc',
98 'run_all_unittests.cc', 103 'run_all_unittests.cc',
99 'test_compositor.cc', 104 'test_compositor.cc',
100 'test_compositor.h', 105 'test_compositor.h',
101 'test_compositor_host.h', 106 'test_compositor_host.h',
102 'test_compositor_host_linux.cc', 107 'test_compositor_host_linux.cc',
103 'test_compositor_host_win.cc', 108 'test_compositor_host_win.cc',
104 'test_suite.cc', 109 'test_suite.cc',
105 'test_suite.h', 110 'test_suite.h',
106 'test_texture.cc', 111 'test_texture.cc',
(...skipping 10 matching lines...) Expand all
117 }], 122 }],
118 ['OS!="mac"', { 123 ['OS!="mac"', {
119 'dependencies': [ 124 'dependencies': [
120 '<(DEPTH)/chrome/chrome.gyp:packed_resources', 125 '<(DEPTH)/chrome/chrome.gyp:packed_resources',
121 ], 126 ],
122 }], 127 }],
123 ], 128 ],
124 }, 129 },
125 ], 130 ],
126 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698