OLD | NEW |
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 Loading... |
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_preemption_strategy.cc', |
| 51 'layer_animation_preemption_strategy.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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 }], | 123 }], |
118 ['OS!="mac"', { | 124 ['OS!="mac"', { |
119 'dependencies': [ | 125 'dependencies': [ |
120 '<(DEPTH)/chrome/chrome.gyp:packed_resources', | 126 '<(DEPTH)/chrome/chrome.gyp:packed_resources', |
121 ], | 127 ], |
122 }], | 128 }], |
123 ], | 129 ], |
124 }, | 130 }, |
125 ], | 131 ], |
126 } | 132 } |
OLD | NEW |