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

Side by Side Diff: sql/BUILD.gn

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed datadeps to data_deps to reflect recent change. Created 5 years, 6 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
« no previous file with comments | « net/net.gyp ('k') | sql/sql.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("sql") { 7 component("sql") {
8 sources = [ 8 sources = [
9 "connection.cc", 9 "connection.cc",
10 "connection.h", 10 "connection.h",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 deps = [ 73 deps = [
74 ":sql", 74 ":sql",
75 ":test_support", 75 ":test_support",
76 "//base/allocator", 76 "//base/allocator",
77 "//base/test:test_support", 77 "//base/test:test_support",
78 "//testing/gtest", 78 "//testing/gtest",
79 "//third_party/sqlite", 79 "//third_party/sqlite",
80 ] 80 ]
81 81
82 if (is_android) {
83 isolate_file = "sql_unittests.isolate"
84 }
85
82 # TODO(GYP) 86 # TODO(GYP)
83 #['OS == "android"', { 87 #['OS == "android"', {
84 # 'dependencies': [ 88 # 'dependencies': [
85 # '../testing/android/native_test.gyp:native_test_native_code', 89 # '../testing/android/native_test.gyp:native_test_native_code',
86 # ], 90 # ],
87 #}], 91 #}],
88 } 92 }
89 93
90 if (is_android) { 94 if (is_android) {
91 #TODO(GYP) 95 #TODO(GYP)
92 #'target_name': 'sql_unittests_apk', 96 #'target_name': 'sql_unittests_apk',
93 #'type': 'none', 97 #'type': 'none',
94 #'dependencies': [ 98 #'dependencies': [
95 # 'sql_unittests', 99 # 'sql_unittests',
96 #], 100 #],
97 #'variables': { 101 #'variables': {
98 # 'test_suite_name': 'sql_unittests', 102 # 'test_suite_name': 'sql_unittests',
99 #}, 103 #},
100 #'includes': [ '../build/apk_test.gypi' ], 104 #'includes': [ '../build/apk_test.gypi' ],
101 } 105 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | sql/sql.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698