| 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "download_constants.h", | 9 "download_constants.h", |
| 10 "download_database.cc", | 10 "download_database.cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "url_utils.cc", | 59 "url_utils.cc", |
| 60 "url_utils.h", | 60 "url_utils.h", |
| 61 "visit_database.cc", | 61 "visit_database.cc", |
| 62 "visit_database.h", | 62 "visit_database.h", |
| 63 "visit_filter.cc", | 63 "visit_filter.cc", |
| 64 "visit_filter.h", | 64 "visit_filter.h", |
| 65 "visit_tracker.cc", | 65 "visit_tracker.cc", |
| 66 "visit_tracker.h", | 66 "visit_tracker.h", |
| 67 "visitsegment_database.cc", | 67 "visitsegment_database.cc", |
| 68 "visitsegment_database.h", | 68 "visitsegment_database.h", |
| 69 "web_history_service.cc", | |
| 70 "web_history_service.h", | |
| 71 ] | 69 ] |
| 72 | 70 |
| 73 deps = [ | 71 deps = [ |
| 74 "//base", | 72 "//base", |
| 75 "//components/favicon_base", | 73 "//components/favicon_base", |
| 76 "//components/keyed_service/core", | 74 "//components/keyed_service/core", |
| 77 "//components/query_parser", | 75 "//components/query_parser", |
| 78 "//components/signin/core/browser", | |
| 79 "//google_apis", | |
| 80 "//net", | 76 "//net", |
| 81 "//skia", | 77 "//skia", |
| 82 "//sql", | 78 "//sql", |
| 83 "//third_party/sqlite", | 79 "//third_party/sqlite", |
| 84 "//ui/base", | 80 "//ui/base", |
| 85 "//ui/gfx", | 81 "//ui/gfx", |
| 86 "//url", | 82 "//url", |
| 87 ] | 83 ] |
| 88 | 84 |
| 89 if (is_android) { | 85 if (is_android) { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 107 "android/visit_sql_handler.h", | 103 "android/visit_sql_handler.h", |
| 108 ] | 104 ] |
| 109 } | 105 } |
| 110 } | 106 } |
| 111 | 107 |
| 112 proto_library("proto") { | 108 proto_library("proto") { |
| 113 sources = [ | 109 sources = [ |
| 114 "in_memory_url_index_cache.proto", | 110 "in_memory_url_index_cache.proto", |
| 115 ] | 111 ] |
| 116 } | 112 } |
| OLD | NEW |