Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: ui/ui_unittests.gypi

Issue 10913083: Remove {base,net}_java dependencies from GYP client targets on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/sync.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'conditions': [ 251 'conditions': [
252 # Special target to wrap a gtest_target_type==shared_library 252 # Special target to wrap a gtest_target_type==shared_library
253 # ui_unittests into an android apk for execution. 253 # ui_unittests into an android apk for execution.
254 # See base.gyp for TODO(jrg)s about this strategy. 254 # See base.gyp for TODO(jrg)s about this strategy.
255 ['OS == "android" and gtest_target_type == "shared_library"', { 255 ['OS == "android" and gtest_target_type == "shared_library"', {
256 'targets': [ 256 'targets': [
257 { 257 {
258 'target_name': 'ui_unittests_apk', 258 'target_name': 'ui_unittests_apk',
259 'type': 'none', 259 'type': 'none',
260 'dependencies': [ 260 'dependencies': [
261 '../base/base.gyp:base_java',
262 'ui_unittests', 261 'ui_unittests',
263 ], 262 ],
264 'variables': { 263 'variables': {
265 'test_suite_name': 'ui_unittests', 264 'test_suite_name': 'ui_unittests',
266 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', 265 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)',
267 }, 266 },
268 'includes': [ '../build/apk_test.gypi' ], 267 'includes': [ '../build/apk_test.gypi' ],
269 }, 268 },
270 ], 269 ],
271 }], 270 }],
272 ], 271 ],
273 } 272 }
OLDNEW
« no previous file with comments | « sync/sync.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698