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

Side by Side Diff: sql/BUILD.gn

Issue 1145833002: [sql] Stats gathering for sql/ APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: asvitkine nits. 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 | « no previous file | sql/connection.h » ('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",
11 "error_delegate_util.cc", 11 "error_delegate_util.cc",
12 "error_delegate_util.h", 12 "error_delegate_util.h",
13 "init_status.h", 13 "init_status.h",
14 "meta_table.cc", 14 "meta_table.cc",
15 "meta_table.h", 15 "meta_table.h",
16 "proxy.cc",
17 "proxy.h",
16 "recovery.cc", 18 "recovery.cc",
17 "recovery.h", 19 "recovery.h",
18 "statement.cc", 20 "statement.cc",
19 "statement.h", 21 "statement.h",
20 "transaction.cc", 22 "transaction.cc",
21 "transaction.h", 23 "transaction.h",
22 ] 24 ]
23 25
24 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
25 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 27 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #'target_name': 'sql_unittests_apk', 94 #'target_name': 'sql_unittests_apk',
93 #'type': 'none', 95 #'type': 'none',
94 #'dependencies': [ 96 #'dependencies': [
95 # 'sql_unittests', 97 # 'sql_unittests',
96 #], 98 #],
97 #'variables': { 99 #'variables': {
98 # 'test_suite_name': 'sql_unittests', 100 # 'test_suite_name': 'sql_unittests',
99 #}, 101 #},
100 #'includes': [ '../build/apk_test.gypi' ], 102 #'includes': [ '../build/apk_test.gypi' ],
101 } 103 }
OLDNEW
« no previous file with comments | « no previous file | sql/connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698