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

Side by Side Diff: sql/sql.gyp

Issue 1327063002: [tracing] Add sqlite memory statistics to tracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes. Created 5 years, 2 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
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 11 matching lines...) Expand all
22 'sources': [ 22 'sources': [
23 'connection.cc', 23 'connection.cc',
24 'connection.h', 24 'connection.h',
25 'error_delegate_util.cc', 25 'error_delegate_util.cc',
26 'error_delegate_util.h', 26 'error_delegate_util.h',
27 'init_status.h', 27 'init_status.h',
28 'meta_table.cc', 28 'meta_table.cc',
29 'meta_table.h', 29 'meta_table.h',
30 'recovery.cc', 30 'recovery.cc',
31 'recovery.h', 31 'recovery.h',
32 'sql_memory_dump_provider.cc',
33 'sql_memory_dump_provider.h',
32 'statement.cc', 34 'statement.cc',
33 'statement.h', 35 'statement.h',
34 'transaction.cc', 36 'transaction.cc',
35 'transaction.h', 37 'transaction.h',
36 ], 38 ],
37 'include_dirs': [ 39 'include_dirs': [
38 '..', 40 '..',
39 ], 41 ],
40 'direct_dependent_settings': { 42 'direct_dependent_settings': {
41 'include_dirs': [ 43 'include_dirs': [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'sql', 84 'sql',
83 'test_support_sql', 85 'test_support_sql',
84 '../base/base.gyp:test_support_base', 86 '../base/base.gyp:test_support_base',
85 '../testing/gtest.gyp:gtest', 87 '../testing/gtest.gyp:gtest',
86 '../third_party/sqlite/sqlite.gyp:sqlite', 88 '../third_party/sqlite/sqlite.gyp:sqlite',
87 ], 89 ],
88 'sources': [ 90 'sources': [
89 'connection_unittest.cc', 91 'connection_unittest.cc',
90 'meta_table_unittest.cc', 92 'meta_table_unittest.cc',
91 'recovery_unittest.cc', 93 'recovery_unittest.cc',
94 'sql_memory_dump_provider_unittest.cc',
92 'sqlite_features_unittest.cc', 95 'sqlite_features_unittest.cc',
93 'statement_unittest.cc', 96 'statement_unittest.cc',
94 'test/paths.cc', 97 'test/paths.cc',
95 'test/paths.h', 98 'test/paths.h',
96 'test/run_all_unittests.cc', 99 'test/run_all_unittests.cc',
97 'test/sql_test_base.cc', 100 'test/sql_test_base.cc',
98 'test/sql_test_base.h', 101 'test/sql_test_base.h',
99 'test/sql_test_suite.cc', 102 'test/sql_test_suite.cc',
100 'test/sql_test_suite.h', 103 'test/sql_test_suite.h',
101 'transaction_unittest.cc', 104 'transaction_unittest.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 '../build/isolate.gypi', 155 '../build/isolate.gypi',
153 ], 156 ],
154 'sources': [ 157 'sources': [
155 'sql_unittests.isolate', 158 'sql_unittests.isolate',
156 ], 159 ],
157 }, 160 },
158 ], 161 ],
159 }], 162 }],
160 ], 163 ],
161 } 164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698