Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Side by Side Diff: components/offline_pages/core/prefetch/BUILD.gn

Issue 2920083002: Prefetching: Introduce store commands abstractions to be used by tasks. (Closed)
Patch Set: Added TODO for NWake Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
36 "store/add_urls_store_command.h",
37 "store/cleanup_zombies_store_command.h",
38 "store/prefetch_store_command_factory.h",
39 "suggested_articles_observer.cc", 39 "suggested_articles_observer.cc",
40 "suggested_articles_observer.h", 40 "suggested_articles_observer.h",
41 ] 41 ]
42 42
43 public_deps = [ 43 public_deps = [
44 ":proto", 44 ":proto",
45 ] 45 ]
46 deps = [ 46 deps = [
47 "//base", 47 "//base",
48 "//components/gcm_driver", 48 "//components/gcm_driver",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "//components/gcm_driver/instance_id", 110 "//components/gcm_driver/instance_id",
111 "//components/offline_pages/core", 111 "//components/offline_pages/core",
112 "//components/offline_pages/core:switches", 112 "//components/offline_pages/core:switches",
113 "//components/offline_pages/core:test_support", 113 "//components/offline_pages/core:test_support",
114 "//net:test_support", 114 "//net:test_support",
115 "//testing/gmock", 115 "//testing/gmock",
116 "//testing/gtest", 116 "//testing/gtest",
117 "//url", 117 "//url",
118 ] 118 ]
119 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698