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