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