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", |
| 10 "download_database.cc", |
| 11 "download_database.h", |
| 12 "download_row.cc", |
| 13 "download_row.h", |
| 14 "download_types.cc", |
| 15 "download_types.h", |
9 "history_backend_notifier.h", | 16 "history_backend_notifier.h", |
10 "history_backend_observer.h", | 17 "history_backend_observer.h", |
11 "history_client.cc", | 18 "history_client.cc", |
12 "history_client.h", | 19 "history_client.h", |
13 "history_constants.cc", | 20 "history_constants.cc", |
14 "history_constants.h", | 21 "history_constants.h", |
15 "history_db_task.h", | 22 "history_db_task.h", |
16 "history_match.cc", | 23 "history_match.cc", |
17 "history_match.h", | 24 "history_match.h", |
18 "history_service_observer.h", | 25 "history_service_observer.h", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "//ui/gfx", | 67 "//ui/gfx", |
61 "//url", | 68 "//url", |
62 ] | 69 ] |
63 } | 70 } |
64 | 71 |
65 proto_library("proto") { | 72 proto_library("proto") { |
66 sources = [ | 73 sources = [ |
67 "in_memory_url_index_cache.proto", | 74 "in_memory_url_index_cache.proto", |
68 ] | 75 ] |
69 } | 76 } |
OLD | NEW |