OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 } | 7 } |
8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
9 | 9 |
10 static_library("prefetch") { | 10 static_library("prefetch") { |
11 sources = [ | 11 sources = [ |
12 "add_unique_urls_task.cc", | 12 "add_unique_urls_task.cc", |
13 "add_unique_urls_task.h", | 13 "add_unique_urls_task.h", |
14 "generate_page_bundle_request.cc", | 14 "generate_page_bundle_request.cc", |
15 "generate_page_bundle_request.h", | 15 "generate_page_bundle_request.h", |
16 "get_operation_request.cc", | 16 "get_operation_request.cc", |
17 "get_operation_request.h", | 17 "get_operation_request.h", |
18 "offline_metrics_collector.h", | 18 "offline_metrics_collector.h", |
19 "prefetch_dispatcher.h", | 19 "prefetch_dispatcher.h", |
20 "prefetch_dispatcher_impl.cc", | 20 "prefetch_dispatcher_impl.cc", |
21 "prefetch_dispatcher_impl.h", | 21 "prefetch_dispatcher_impl.h", |
22 "prefetch_gcm_app_handler.cc", | 22 "prefetch_gcm_app_handler.cc", |
23 "prefetch_gcm_app_handler.h", | 23 "prefetch_gcm_app_handler.h", |
24 "prefetch_gcm_handler.h", | 24 "prefetch_gcm_handler.h", |
25 "prefetch_in_memory_store.cc", | |
26 "prefetch_in_memory_store.h", | |
27 "prefetch_item.cc", | 25 "prefetch_item.cc", |
28 "prefetch_item.h", | 26 "prefetch_item.h", |
29 "prefetch_proto_utils.cc", | 27 "prefetch_proto_utils.cc", |
30 "prefetch_proto_utils.h", | 28 "prefetch_proto_utils.h", |
31 "prefetch_request_fetcher.cc", | 29 "prefetch_request_fetcher.cc", |
32 "prefetch_request_fetcher.h", | 30 "prefetch_request_fetcher.h", |
33 "prefetch_service.h", | 31 "prefetch_service.h", |
34 "prefetch_service_impl.cc", | 32 "prefetch_service_impl.cc", |
35 "prefetch_service_impl.h", | 33 "prefetch_service_impl.h", |
36 "prefetch_store.h", | |
37 "prefetch_types.cc", | 34 "prefetch_types.cc", |
38 "prefetch_types.h", | 35 "prefetch_types.h", |
39 "suggested_articles_observer.cc", | 36 "suggested_articles_observer.cc", |
40 "suggested_articles_observer.h", | 37 "suggested_articles_observer.h", |
41 ] | 38 ] |
42 | 39 |
43 public_deps = [ | 40 public_deps = [ |
44 ":proto", | 41 ":proto", |
45 ] | 42 ] |
46 deps = [ | 43 deps = [ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "//components/gcm_driver/instance_id", | 107 "//components/gcm_driver/instance_id", |
111 "//components/offline_pages/core", | 108 "//components/offline_pages/core", |
112 "//components/offline_pages/core:switches", | 109 "//components/offline_pages/core:switches", |
113 "//components/offline_pages/core:test_support", | 110 "//components/offline_pages/core:test_support", |
114 "//net:test_support", | 111 "//net:test_support", |
115 "//testing/gmock", | 112 "//testing/gmock", |
116 "//testing/gtest", | 113 "//testing/gtest", |
117 "//url", | 114 "//url", |
118 ] | 115 ] |
119 } | 116 } |
OLD | NEW |