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

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: Address Peter's comment 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
« content/content.gyp ('K') | « 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« content/content.gyp ('K') | « sync/sync.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698