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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'conditions': [ | 250 'conditions': [ |
251 # Special target to wrap a gtest_target_type==shared_library | 251 # Special target to wrap a gtest_target_type==shared_library |
252 # ui_unittests into an android apk for execution. | 252 # ui_unittests into an android apk for execution. |
253 # See base.gyp for TODO(jrg)s about this strategy. | 253 # See base.gyp for TODO(jrg)s about this strategy. |
254 ['OS == "android" and gtest_target_type == "shared_library"', { | 254 ['OS == "android" and gtest_target_type == "shared_library"', { |
255 'targets': [ | 255 'targets': [ |
256 { | 256 { |
257 'target_name': 'ui_unittests_apk', | 257 'target_name': 'ui_unittests_apk', |
258 'type': 'none', | 258 'type': 'none', |
259 'dependencies': [ | 259 'dependencies': [ |
260 '../base/base.gyp:base_java', | |
261 'ui_unittests', | 260 'ui_unittests', |
262 ], | 261 ], |
263 'variables': { | 262 'variables': { |
264 'test_suite_name': 'ui_unittests', | 263 'test_suite_name': 'ui_unittests', |
265 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 264 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
266 }, | 265 }, |
267 'includes': [ '../build/apk_test.gypi' ], | 266 'includes': [ '../build/apk_test.gypi' ], |
268 }, | 267 }, |
269 ], | 268 ], |
270 }], | 269 }], |
271 ], | 270 ], |
272 } | 271 } |
OLD | NEW |