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

Side by Side Diff: sql/BUILD.gn

Issue 551933002: Mark gtest and gmock as testonly in GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@testonly
Patch Set: android Created 6 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
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | sync/BUILD.gn » ('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 component("sql") { 5 component("sql") {
6 sources = [ 6 sources = [
7 "connection.cc", 7 "connection.cc",
8 "connection.h", 8 "connection.h",
9 "error_delegate_util.cc", 9 "error_delegate_util.cc",
10 "error_delegate_util.h", 10 "error_delegate_util.h",
(...skipping 15 matching lines...) Expand all
26 } 26 }
27 27
28 deps = [ 28 deps = [
29 "//base", 29 "//base",
30 "//third_party/sqlite", 30 "//third_party/sqlite",
31 "//base/third_party/dynamic_annotations", 31 "//base/third_party/dynamic_annotations",
32 ] 32 ]
33 } 33 }
34 34
35 source_set("test_support") { 35 source_set("test_support") {
36 testonly = true
36 sources = [ 37 sources = [
37 "test/error_callback_support.cc", 38 "test/error_callback_support.cc",
38 "test/error_callback_support.h", 39 "test/error_callback_support.h",
39 "test/scoped_error_ignorer.cc", 40 "test/scoped_error_ignorer.cc",
40 "test/scoped_error_ignorer.h", 41 "test/scoped_error_ignorer.h",
41 "test/test_helpers.cc", 42 "test/test_helpers.cc",
42 "test/test_helpers.h", 43 "test/test_helpers.h",
43 ] 44 ]
44 45
45 deps = [ 46 deps = [
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #'target_name': 'sql_unittests_apk', 91 #'target_name': 'sql_unittests_apk',
91 #'type': 'none', 92 #'type': 'none',
92 #'dependencies': [ 93 #'dependencies': [
93 # 'sql_unittests', 94 # 'sql_unittests',
94 #], 95 #],
95 #'variables': { 96 #'variables': {
96 # 'test_suite_name': 'sql_unittests', 97 # 'test_suite_name': 'sql_unittests',
97 #}, 98 #},
98 #'includes': [ '../build/apk_test.gypi' ], 99 #'includes': [ '../build/apk_test.gypi' ],
99 } 100 }
OLDNEW
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | sync/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698