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

Side by Side Diff: sql/sql.gyp

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 | « net/net.gyp ('k') | sync/sync.gyp » ('j') | 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ], 66 ],
67 'conditions': [ 67 'conditions': [
68 # Special target to wrap a gtest_target_type==shared_library 68 # Special target to wrap a gtest_target_type==shared_library
69 # sql_unittests into an android apk for execution. 69 # sql_unittests into an android apk for execution.
70 ['OS == "android" and gtest_target_type == "shared_library"', { 70 ['OS == "android" and gtest_target_type == "shared_library"', {
71 'targets': [ 71 'targets': [
72 { 72 {
73 'target_name': 'sql_unittests_apk', 73 'target_name': 'sql_unittests_apk',
74 'type': 'none', 74 'type': 'none',
75 'dependencies': [ 75 'dependencies': [
76 '../base/base.gyp:base_java',
77 'sql_unittests', 76 'sql_unittests',
78 ], 77 ],
79 'variables': { 78 'variables': {
80 'test_suite_name': 'sql_unittests', 79 'test_suite_name': 'sql_unittests',
81 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)', 80 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sql_unitt ests<(SHARED_LIB_SUFFIX)',
82 }, 81 },
83 'includes': [ '../build/apk_test.gypi' ], 82 'includes': [ '../build/apk_test.gypi' ],
84 }, 83 },
85 ], 84 ],
86 }], 85 }],
87 ], 86 ],
88 } 87 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | sync/sync.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698