| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { |
| 11 'target_name': 'ui_test_support', | 11 'target_name': 'ui_test_support', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
| 14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
| 15 '../testing/gtest.gyp:gtest', | 15 '../testing/gtest.gyp:gtest', |
| 16 'gfx/gfx.gyp:gfx', | 16 'gfx/gfx.gyp:gfx', |
| 17 'gfx/gfx.gyp:gfx_geometry', | 17 'gfx/gfx.gyp:gfx_geometry', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'base/test/ui_controls.h', | 20 'base/test/ui_controls.h', |
| 21 'base/test/ui_controls_aura.cc', | 21 'base/test/ui_controls_aura.cc', |
| 22 'base/test/ui_controls_gtk.cc', | |
| 23 'base/test/ui_controls_internal_win.cc', | 22 'base/test/ui_controls_internal_win.cc', |
| 24 'base/test/ui_controls_internal_win.h', | 23 'base/test/ui_controls_internal_win.h', |
| 25 'base/test/ui_controls_mac.mm', | 24 'base/test/ui_controls_mac.mm', |
| 26 'base/test/ui_controls_win.cc', | 25 'base/test/ui_controls_win.cc', |
| 27 ], | 26 ], |
| 28 'include_dirs': [ | 27 'include_dirs': [ |
| 29 '../', | 28 '../', |
| 30 ], | 29 ], |
| 31 'conditions': [ | 30 'conditions': [ |
| 32 ['OS!="ios"', { | 31 ['OS!="ios"', { |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'variables': { | 356 'variables': { |
| 358 'test_suite_name': 'ui_unittests', | 357 'test_suite_name': 'ui_unittests', |
| 359 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 358 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
| 360 }, | 359 }, |
| 361 'includes': [ '../build/apk_test.gypi' ], | 360 'includes': [ '../build/apk_test.gypi' ], |
| 362 }, | 361 }, |
| 363 ], | 362 ], |
| 364 }], | 363 }], |
| 365 ], | 364 ], |
| 366 } | 365 } |
| OLD | NEW |