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 28 matching lines...) Expand all Loading... |
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_cc.cc', | 42 'compositor_cc.cc', |
43 'compositor_cc.h', | 43 'compositor_cc.h', |
44 'compositor_observer.h', | 44 'compositor_observer.h', |
45 'compositor_stub.cc', | 45 'compositor_stub.cc', |
46 'compositor_switches.cc', | 46 'compositor_switches.cc', |
47 'compositor_switches.h', | 47 'compositor_switches.h', |
48 'compositor_win.cc', | 48 'compositor_win.cc', |
49 » 'debug_utils.cc', | 49 'debug_utils.cc', |
50 » 'debug_utils.h', | 50 'debug_utils.h', |
51 'layer.cc', | 51 'layer.cc', |
52 'layer.h', | 52 'layer.h', |
53 'layer_animation_delegate.h', | 53 'layer_animation_delegate.h', |
54 'layer_animation_element.cc', | 54 'layer_animation_element.cc', |
55 'layer_animation_element.h', | 55 'layer_animation_element.h', |
56 'layer_animation_observer.h', | 56 'layer_animation_observer.h', |
57 'layer_animation_sequence.cc', | 57 'layer_animation_sequence.cc', |
58 'layer_animation_sequence.h', | 58 'layer_animation_sequence.h', |
59 'layer_animator.cc', | 59 'layer_animator.cc', |
60 'layer_animator.h', | 60 'layer_animator.h', |
61 'screen_rotation.cc', | 61 'screen_rotation.cc', |
62 'screen_rotation.h', | 62 'screen_rotation.h', |
63 ], | 63 ], |
64 'conditions': [ | 64 'conditions': [ |
65 ['os_posix == 1 and OS != "mac"', { | 65 ['os_posix == 1', { |
66 'sources!': [ | 66 'sources!': [ |
67 'compositor_stub.cc', | 67 'compositor_stub.cc', |
68 ], | 68 ], |
69 }], | 69 }], |
70 ['OS == "win" and views_compositor == 1', { | 70 ['OS == "win" and views_compositor == 1', { |
71 'sources!': [ | 71 'sources!': [ |
72 'compositor_stub.cc', | 72 'compositor_stub.cc', |
73 ], | 73 ], |
74 # TODO(sky): before we make this real need to remove | 74 # TODO(sky): before we make this real need to remove |
75 # IDR_BITMAP_BRUSH_IMAGE. | 75 # IDR_BITMAP_BRUSH_IMAGE. |
76 'dependencies': [ | 76 'dependencies': [ |
77 '<(DEPTH)/ui/ui.gyp:gfx_resources', | 77 '<(DEPTH)/ui/ui.gyp:gfx_resources', |
78 ], | 78 ], |
79 'link_settings': { | 79 'link_settings': { |
80 'libraries': [ | 80 'libraries': [ |
81 '-ld3d10.lib', | 81 '-ld3d10.lib', |
82 '-ld3dx10d.lib', | 82 '-ld3dx10d.lib', |
83 '-ldxerr.lib', | 83 '-ldxerr.lib', |
84 '-ldxguid.lib', | 84 '-ldxguid.lib', |
85 ] | 85 ] |
86 }, | 86 }, |
87 }], | 87 }], |
88 ['OS == "win" and views_compositor == 0', { | 88 ['OS == "win" and views_compositor == 0', { |
89 'sources/': [ | 89 'sources/': [ |
90 ['exclude', '^compositor_win.cc'], | 90 ['exclude', '^compositor_win.cc'], |
91 ], | 91 ], |
92 }], | 92 }], |
93 ['use_webkit_compositor == 1', { | 93 ['use_webkit_compositor == 1', { |
94 'sources/': [ | 94 'sources/': [ |
95 ['exclude', '^compositor_(gl|win|stub).(h|cc)$'], | 95 ['exclude', '^compositor_(gl|mac|win|stub).(h|cc|mm)$'], |
96 ], | 96 ], |
97 'dependencies': [ | 97 'dependencies': [ |
98 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web
kit', | 98 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web
kit', |
99 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', | 99 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', |
100 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 100 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
101 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', | 101 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', |
102 ], | 102 ], |
103 }, { | 103 }, { |
104 'sources!': [ | 104 'sources!': [ |
105 'compositor_cc.cc', | 105 'compositor_cc.cc', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 'test_compositor', | 155 'test_compositor', |
156 ], | 156 ], |
157 'sources': [ | 157 'sources': [ |
158 'layer_animation_element_unittest.cc', | 158 'layer_animation_element_unittest.cc', |
159 'layer_animation_sequence_unittest.cc', | 159 'layer_animation_sequence_unittest.cc', |
160 'layer_animator_unittest.cc', | 160 'layer_animator_unittest.cc', |
161 'layer_unittest.cc', | 161 'layer_unittest.cc', |
162 'run_all_unittests.cc', | 162 'run_all_unittests.cc', |
163 'test/test_compositor_host.h', | 163 'test/test_compositor_host.h', |
164 'test/test_compositor_host_linux.cc', | 164 'test/test_compositor_host_linux.cc', |
| 165 'test/test_compositor_host_mac.mm', |
165 'test/test_compositor_host_win.cc', | 166 'test/test_compositor_host_win.cc', |
166 'test/test_layer_animation_delegate.cc', | 167 'test/test_layer_animation_delegate.cc', |
167 'test/test_layer_animation_delegate.h', | 168 'test/test_layer_animation_delegate.h', |
168 'test/test_layer_animation_observer.cc', | 169 'test/test_layer_animation_observer.cc', |
169 'test/test_layer_animation_observer.h', | 170 'test/test_layer_animation_observer.h', |
170 'test/test_suite.cc', | 171 'test/test_suite.cc', |
171 'test/test_suite.h', | 172 'test/test_suite.h', |
172 'test/test_utils.cc', | 173 'test/test_utils.cc', |
173 'test/test_utils.h', | 174 'test/test_utils.h', |
174 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 175 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
(...skipping 30 matching lines...) Expand all Loading... |
205 'test/test_compositor.cc', | 206 'test/test_compositor.cc', |
206 'test/test_compositor.h', | 207 'test/test_compositor.h', |
207 'test/test_texture.cc', | 208 'test/test_texture.cc', |
208 'test/test_texture.h', | 209 'test/test_texture.h', |
209 ], | 210 ], |
210 }], | 211 }], |
211 ], | 212 ], |
212 }, | 213 }, |
213 ], | 214 ], |
214 } | 215 } |
OLD | NEW |