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

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

Issue 7972023: Implicit animations through Layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: SetAnimator 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 28 matching lines...) Expand all
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_animator.cc', 47 'layer_animator.cc',
48 'layer_animator.h', 48 'layer_animator.h',
49 'layer_animator_delegate.h',
49 ], 50 ],
50 'conditions': [ 51 'conditions': [
51 ['os_posix == 1 and OS != "mac"', { 52 ['os_posix == 1 and OS != "mac"', {
52 'sources!': [ 53 'sources!': [
53 'compositor_stub.cc', 54 'compositor_stub.cc',
54 ], 55 ],
55 }], 56 }],
56 ['OS == "win" and views_compositor == 1', { 57 ['OS == "win" and views_compositor == 1', {
57 'sources!': [ 58 'sources!': [
58 'compositor_stub.cc', 59 'compositor_stub.cc',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'test_compositor_host_linux.cc', 101 'test_compositor_host_linux.cc',
101 'test_compositor_host_win.cc', 102 'test_compositor_host_win.cc',
102 'test_suite.cc', 103 'test_suite.cc',
103 'test_suite.h', 104 'test_suite.h',
104 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 105 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
105 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 106 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
106 ], 107 ],
107 }, 108 },
108 ], 109 ],
109 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698