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

Side by Side Diff: sql/sql.gyp

Issue 1434993002: [tracing] Add separate dump provider for sql connection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web_cache2_base
Patch Set: Fixes. Created 4 years, 11 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 {
11 'target_name': 'sql', 11 'target_name': 'sql',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../third_party/sqlite/sqlite.gyp:sqlite', 15 '../third_party/sqlite/sqlite.gyp:sqlite',
16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
17 ], 17 ],
18 'export_dependent_settings': [ 18 'export_dependent_settings': [
19 '../base/base.gyp:base', 19 '../base/base.gyp:base',
20 ], 20 ],
21 'defines': [ 'SQL_IMPLEMENTATION' ], 21 'defines': [ 'SQL_IMPLEMENTATION' ],
22 'sources': [ 22 'sources': [
23 'connection.cc', 23 'connection.cc',
24 'connection.h', 24 'connection.h',
25 'connection_memory_dump_provider.cc',
26 'connection_memory_dump_provider.h',
25 'error_delegate_util.cc', 27 'error_delegate_util.cc',
26 'error_delegate_util.h', 28 'error_delegate_util.h',
27 'init_status.h', 29 'init_status.h',
28 'meta_table.cc', 30 'meta_table.cc',
29 'meta_table.h', 31 'meta_table.h',
30 'recovery.cc', 32 'recovery.cc',
31 'recovery.h', 33 'recovery.h',
32 'sql_memory_dump_provider.cc', 34 'sql_memory_dump_provider.cc',
33 'sql_memory_dump_provider.h', 35 'sql_memory_dump_provider.h',
34 'statement.cc', 36 'statement.cc',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 '../build/isolate.gypi', 176 '../build/isolate.gypi',
175 ], 177 ],
176 'sources': [ 178 'sources': [
177 'sql_unittests.isolate', 179 'sql_unittests.isolate',
178 ], 180 ],
179 }, 181 },
180 ], 182 ],
181 }], 183 }],
182 ], 184 ],
183 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698