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

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

Issue 2857063002: Add a way to send the resource percentage signal to the RC. (Closed)
Patch Set: Make sure we don't send notifications unless we are offlining Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 8
9 static_library("background_offliner") { 9 static_library("background_offliner") {
10 sources = [ 10 sources = [
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "request_coordinator.h", 43 "request_coordinator.h",
44 "request_coordinator_event_logger.cc", 44 "request_coordinator_event_logger.cc",
45 "request_coordinator_event_logger.h", 45 "request_coordinator_event_logger.h",
46 "request_notifier.h", 46 "request_notifier.h",
47 "request_queue.cc", 47 "request_queue.cc",
48 "request_queue.h", 48 "request_queue.h",
49 "request_queue_results.h", 49 "request_queue_results.h",
50 "request_queue_store.h", 50 "request_queue_store.h",
51 "request_queue_store_sql.cc", 51 "request_queue_store_sql.cc",
52 "request_queue_store_sql.h", 52 "request_queue_store_sql.h",
53 "resource_data_type.h",
54 "resource_tracker_observer.h",
53 "save_page_request.cc", 55 "save_page_request.cc",
54 "save_page_request.h", 56 "save_page_request.h",
55 "scheduler.h", 57 "scheduler.h",
56 "update_request_task.cc", 58 "update_request_task.cc",
57 "update_request_task.h", 59 "update_request_task.h",
58 ] 60 ]
59 61
60 deps = [ 62 deps = [
61 "//base", 63 "//base",
62 "//components/keyed_service/core", 64 "//components/keyed_service/core",
63 "//components/offline_pages/core", 65 "//components/offline_pages/core",
64 "//components/offline_pages/core:switches", 66 "//components/offline_pages/core:switches",
65 "//net", 67 "//net",
68 "//skia",
66 "//sql:sql", 69 "//sql:sql",
67 "//url", 70 "//url",
68 ] 71 ]
69 } 72 }
70 73
71 static_library("test_support") { 74 static_library("test_support") {
72 testonly = true 75 testonly = true
73 sources = [ 76 sources = [
74 "network_quality_provider_stub.cc", 77 "network_quality_provider_stub.cc",
75 "network_quality_provider_stub.h", 78 "network_quality_provider_stub.h",
76 "offliner_stub.cc", 79 "offliner_stub.cc",
77 "offliner_stub.h", 80 "offliner_stub.h",
78 "request_coordinator_stub_taco.cc", 81 "request_coordinator_stub_taco.cc",
79 "request_coordinator_stub_taco.h", 82 "request_coordinator_stub_taco.h",
80 "request_queue_in_memory_store.cc", 83 "request_queue_in_memory_store.cc",
81 "request_queue_in_memory_store.h", 84 "request_queue_in_memory_store.h",
85 "resource_data_type.h",
86 "resource_tracker_observer.h",
87 "resource_tracker_observer_stub.cc",
88 "resource_tracker_observer_stub.h",
82 "scheduler_stub.cc", 89 "scheduler_stub.cc",
83 "scheduler_stub.h", 90 "scheduler_stub.h",
84 ] 91 ]
85 92
86 deps = [ 93 deps = [
87 ":background_offliner", 94 ":background_offliner",
88 "//base", 95 "//base",
89 "//net", 96 "//net",
90 ] 97 ]
91 } 98 }
(...skipping 24 matching lines...) Expand all
116 ":test_support", 123 ":test_support",
117 "//base", 124 "//base",
118 "//base/test:test_support", 125 "//base/test:test_support",
119 "//components/offline_pages/core", 126 "//components/offline_pages/core",
120 "//components/offline_pages/core:switches", 127 "//components/offline_pages/core:switches",
121 "//sql:sql", 128 "//sql:sql",
122 "//testing/gtest", 129 "//testing/gtest",
123 "//url", 130 "//url",
124 ] 131 ]
125 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698