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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 'run_all_unittests.cc', | 185 'run_all_unittests.cc', |
186 'transform_animation_curve_adapter_unittest.cc', | 186 'transform_animation_curve_adapter_unittest.cc', |
187 ], | 187 ], |
188 'conditions': [ | 188 'conditions': [ |
189 # osmesa GL implementation is used on linux. | 189 # osmesa GL implementation is used on linux. |
190 ['OS=="linux"', { | 190 ['OS=="linux"', { |
191 'dependencies': [ | 191 'dependencies': [ |
192 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 192 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
193 ], | 193 ], |
194 }], | 194 }], |
195 ['os_posix == 1 and OS != "mac"', { | |
196 'conditions': [ | |
197 ['use_allocator!="none"', { | |
198 'dependencies': [ | |
199 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
200 ], | |
201 }], | |
202 ], | |
203 }], | |
204 ['OS == "android"', { | 195 ['OS == "android"', { |
205 'dependencies': [ | 196 'dependencies': [ |
206 '../../testing/android/native_test.gyp:native_test_native_code', | 197 '../../testing/android/native_test.gyp:native_test_native_code', |
207 ], | 198 ], |
208 }], | 199 }], |
209 ], | 200 ], |
210 }, | 201 }, |
211 ], | 202 ], |
212 'conditions': [ | 203 'conditions': [ |
213 ['test_isolation_mode != "noop"', { | 204 ['test_isolation_mode != "noop"', { |
(...skipping 27 matching lines...) Expand all Loading... |
241 'variables': { | 232 'variables': { |
242 'test_suite_name': 'compositor_unittests', | 233 'test_suite_name': 'compositor_unittests', |
243 }, | 234 }, |
244 'includes': [ | 235 'includes': [ |
245 '../../build/apk_test.gypi', | 236 '../../build/apk_test.gypi', |
246 ], | 237 ], |
247 }, | 238 }, |
248 ]}] | 239 ]}] |
249 ], | 240 ], |
250 } | 241 } |
OLD | NEW |