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