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", |
11 "download_database.h", | 11 "download_database.h", |
12 "download_row.cc", | 12 "download_row.cc", |
13 "download_row.h", | 13 "download_row.h", |
14 "download_types.cc", | 14 "download_types.cc", |
15 "download_types.h", | 15 "download_types.h", |
| 16 "expire_history_backend.cc", |
| 17 "expire_history_backend.h", |
16 "history_backend_notifier.h", | 18 "history_backend_notifier.h", |
17 "history_backend_observer.h", | 19 "history_backend_observer.h", |
18 "history_client.cc", | 20 "history_client.cc", |
19 "history_client.h", | 21 "history_client.h", |
20 "history_constants.cc", | 22 "history_constants.cc", |
21 "history_constants.h", | 23 "history_constants.h", |
22 "history_context.h", | 24 "history_context.h", |
23 "history_database.cc", | 25 "history_database.cc", |
24 "history_database.h", | 26 "history_database.h", |
25 "history_database_params.cc", | 27 "history_database_params.cc", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "android/visit_sql_handler.h", | 96 "android/visit_sql_handler.h", |
95 ] | 97 ] |
96 } | 98 } |
97 } | 99 } |
98 | 100 |
99 proto_library("proto") { | 101 proto_library("proto") { |
100 sources = [ | 102 sources = [ |
101 "in_memory_url_index_cache.proto", | 103 "in_memory_url_index_cache.proto", |
102 ] | 104 ] |
103 } | 105 } |
OLD | NEW |