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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 '../gfx/gfx.gyp:gfx_geometry', | 293 '../gfx/gfx.gyp:gfx_geometry', |
294 '../gl/gl.gyp:gl', | 294 '../gl/gl.gyp:gl', |
295 'aura_test_support', | 295 'aura_test_support', |
296 'aura', | 296 'aura', |
297 ], | 297 ], |
298 'include_dirs': [ | 298 'include_dirs': [ |
299 '..', | 299 '..', |
300 ], | 300 ], |
301 'sources': [ | 301 'sources': [ |
302 'gestures/gesture_recognizer_unittest.cc', | 302 'gestures/gesture_recognizer_unittest.cc', |
| 303 'painting_window_unittest.cc', |
303 'test/run_all_unittests.cc', | 304 'test/run_all_unittests.cc', |
304 'window_event_dispatcher_unittest.cc', | 305 'window_event_dispatcher_unittest.cc', |
305 'window_targeter_unittest.cc', | 306 'window_targeter_unittest.cc', |
306 'window_unittest.cc', | 307 'window_unittest.cc', |
307 ], | 308 ], |
308 'conditions': [ | 309 'conditions': [ |
309 # osmesa GL implementation is used on linux. | 310 # osmesa GL implementation is used on linux. |
310 ['OS=="linux"', { | 311 ['OS=="linux"', { |
311 'dependencies': [ | 312 'dependencies': [ |
312 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 313 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
(...skipping 28 matching lines...) Expand all Loading... |
341 'dependencies': [ | 342 'dependencies': [ |
342 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 343 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
343 ], | 344 ], |
344 }], | 345 }], |
345 ], | 346 ], |
346 }, | 347 }, |
347 ], | 348 ], |
348 }], | 349 }], |
349 ], | 350 ], |
350 } | 351 } |
OLD | NEW |