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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "url_utils.cc", | 53 "url_utils.cc", |
54 "url_utils.h", | 54 "url_utils.h", |
55 "visit_database.cc", | 55 "visit_database.cc", |
56 "visit_database.h", | 56 "visit_database.h", |
57 "visit_filter.cc", | 57 "visit_filter.cc", |
58 "visit_filter.h", | 58 "visit_filter.h", |
59 "visit_tracker.cc", | 59 "visit_tracker.cc", |
60 "visit_tracker.h", | 60 "visit_tracker.h", |
61 "visitsegment_database.cc", | 61 "visitsegment_database.cc", |
62 "visitsegment_database.h", | 62 "visitsegment_database.h", |
| 63 "web_history_service.cc", |
| 64 "web_history_service.h", |
63 ] | 65 ] |
64 | 66 |
65 deps = [ | 67 deps = [ |
66 "//base", | 68 "//base", |
67 "//components/favicon_base", | 69 "//components/favicon_base", |
68 "//components/keyed_service/core", | 70 "//components/keyed_service/core", |
69 "//components/query_parser", | 71 "//components/query_parser", |
| 72 "//components/signin/core/browser", |
| 73 "//google_apis", |
70 "//net", | 74 "//net", |
71 "//sql", | 75 "//sql", |
72 "//third_party/sqlite", | 76 "//third_party/sqlite", |
73 "//ui/base", | 77 "//ui/base", |
74 "//ui/gfx", | 78 "//ui/gfx", |
75 "//url", | 79 "//url", |
76 ] | 80 ] |
77 | 81 |
78 if (is_android) { | 82 if (is_android) { |
79 sources += [ | 83 sources += [ |
(...skipping 16 matching lines...) Expand all Loading... |
96 "android/visit_sql_handler.h", | 100 "android/visit_sql_handler.h", |
97 ] | 101 ] |
98 } | 102 } |
99 } | 103 } |
100 | 104 |
101 proto_library("proto") { | 105 proto_library("proto") { |
102 sources = [ | 106 sources = [ |
103 "in_memory_url_index_cache.proto", | 107 "in_memory_url_index_cache.proto", |
104 ] | 108 ] |
105 } | 109 } |
OLD | NEW |