OLD | NEW |
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 static_library("android") { | 5 static_library("android") { |
6 sources = [ | 6 sources = [ |
7 "android_cache_database.cc", | 7 "android_cache_database.cc", |
8 "android_cache_database.h", | 8 "android_cache_database.h", |
9 "android_history_types.cc", | 9 "android_history_types.cc", |
10 "android_history_types.h", | 10 "android_history_types.h", |
11 "android_time.h", | 11 "android_time.h", |
12 "android_urls_database.cc", | 12 "android_urls_database.cc", |
13 "android_urls_database.h", | 13 "android_urls_database.h", |
| 14 "android_urls_sql_handler.cc", |
| 15 "android_urls_sql_handler.h", |
14 "favicon_sql_handler.cc", | 16 "favicon_sql_handler.cc", |
15 "favicon_sql_handler.h", | 17 "favicon_sql_handler.h", |
16 "sql_handler.cc", | 18 "sql_handler.cc", |
17 "sql_handler.h", | 19 "sql_handler.h", |
| 20 "urls_sql_handler.cc", |
| 21 "urls_sql_handler.h", |
| 22 "visit_sql_handler.cc", |
| 23 "visit_sql_handler.h", |
18 ] | 24 ] |
19 | 25 |
20 deps = [ | 26 deps = [ |
21 "//base", | 27 "//base", |
22 "//components/history/core/browser", | 28 "//components/history/core/browser", |
23 "//sql", | 29 "//sql", |
24 ] | 30 ] |
25 } | 31 } |
OLD | NEW |