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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ui_test_support', | 8 'target_name': 'ui_test_support', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 }, | 181 }, |
182 'link_settings': { | 182 'link_settings': { |
183 'libraries': [ | 183 'libraries': [ |
184 '-limm32.lib', | 184 '-limm32.lib', |
185 '-loleacc.lib', | 185 '-loleacc.lib', |
186 ], | 186 ], |
187 }, | 187 }, |
188 }], | 188 }], |
189 ['OS == "linux"', { | 189 ['OS == "linux"', { |
190 'sources': [ | 190 'sources': [ |
| 191 'base/x/x11_util_unittest.cc', |
191 'gfx/platform_font_pango_unittest.cc', | 192 'gfx/platform_font_pango_unittest.cc', |
192 ], | 193 ], |
193 }], | 194 }], |
194 ['OS == "linux" and toolkit_views==1', { | 195 ['OS == "linux" and toolkit_views==1', { |
195 'sources': [ | 196 'sources': [ |
196 'base/x/events_x_unittest.cc', | 197 'base/x/events_x_unittest.cc', |
197 ], | 198 ], |
198 }], | 199 }], |
199 ['OS != "mac" and OS != "ios"', { | 200 ['OS != "mac" and OS != "ios"', { |
200 'sources': [ | 201 'sources': [ |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 'variables': { | 293 'variables': { |
293 'test_suite_name': 'ui_unittests', | 294 'test_suite_name': 'ui_unittests', |
294 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 295 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
295 }, | 296 }, |
296 'includes': [ '../build/apk_test.gypi' ], | 297 'includes': [ '../build/apk_test.gypi' ], |
297 }, | 298 }, |
298 ], | 299 ], |
299 }], | 300 }], |
300 ], | 301 ], |
301 } | 302 } |
OLD | NEW |