OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 'sources': [ | 110 'sources': [ |
111 'layer_animation_element_unittest.cc', | 111 'layer_animation_element_unittest.cc', |
112 'layer_animation_sequence_unittest.cc', | 112 'layer_animation_sequence_unittest.cc', |
113 'layer_animator_unittest.cc', | 113 'layer_animator_unittest.cc', |
114 'layer_unittest.cc', | 114 'layer_unittest.cc', |
115 'run_all_unittests.cc', | 115 'run_all_unittests.cc', |
116 'test/layer_animator_test_controller.cc', | 116 'test/layer_animator_test_controller.cc', |
117 'test/layer_animator_test_controller.h', | 117 'test/layer_animator_test_controller.h', |
118 'test/test_compositor_host.h', | 118 'test/test_compositor_host.h', |
119 'test/test_compositor_host_mac.mm', | 119 'test/test_compositor_host_mac.mm', |
| 120 'test/test_compositor_host_ozone.cc', |
120 'test/test_compositor_host_win.cc', | 121 'test/test_compositor_host_win.cc', |
121 'test/test_compositor_host_x11.cc', | 122 'test/test_compositor_host_x11.cc', |
122 'test/test_layer_animation_delegate.cc', | 123 'test/test_layer_animation_delegate.cc', |
123 'test/test_layer_animation_delegate.h', | 124 'test/test_layer_animation_delegate.h', |
124 'test/test_layer_animation_observer.cc', | 125 'test/test_layer_animation_observer.cc', |
125 'test/test_layer_animation_observer.h', | 126 'test/test_layer_animation_observer.h', |
126 'test/test_utils.cc', | 127 'test/test_utils.cc', |
127 'test/test_utils.h', | 128 'test/test_utils.h', |
128 ], | 129 ], |
129 'conditions': [ | 130 'conditions': [ |
130 # osmesa GL implementation is used on linux. | 131 # osmesa GL implementation is used on linux. |
131 ['OS=="linux"', { | 132 ['OS=="linux"', { |
132 'dependencies': [ | 133 'dependencies': [ |
133 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 134 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
134 ], | 135 ], |
135 }], | 136 }], |
136 ['os_posix == 1 and OS != "mac"', { | 137 ['os_posix == 1 and OS != "mac"', { |
137 'conditions': [ | 138 'conditions': [ |
138 ['linux_use_tcmalloc==1', { | 139 ['linux_use_tcmalloc==1', { |
139 'dependencies': [ | 140 'dependencies': [ |
140 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 141 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
141 ], | 142 ], |
142 }], | 143 }], |
143 ], | 144 ], |
144 }], | 145 }], |
145 ], | 146 ], |
146 }, | 147 }, |
147 ], | 148 ], |
148 } | 149 } |
OLD | NEW |