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

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: More RyanSturm feedback 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",
66 "//sql:sql", 68 "//sql:sql",
67 "//url", 69 "//url",
68 ] 70 ]
69 } 71 }
70 72
71 static_library("test_support") { 73 static_library("test_support") {
72 testonly = true 74 testonly = true
73 sources = [ 75 sources = [
74 "network_quality_provider_stub.cc", 76 "network_quality_provider_stub.cc",
75 "network_quality_provider_stub.h", 77 "network_quality_provider_stub.h",
76 "offliner_stub.cc", 78 "offliner_stub.cc",
77 "offliner_stub.h", 79 "offliner_stub.h",
78 "request_coordinator_stub_taco.cc", 80 "request_coordinator_stub_taco.cc",
79 "request_coordinator_stub_taco.h", 81 "request_coordinator_stub_taco.h",
80 "request_queue_in_memory_store.cc", 82 "request_queue_in_memory_store.cc",
81 "request_queue_in_memory_store.h", 83 "request_queue_in_memory_store.h",
84 "resource_data_type.h",
85 "resource_tracker_observer.h",
86 "resource_tracker_observer_stub.cc",
87 "resource_tracker_observer_stub.h",
82 "scheduler_stub.cc", 88 "scheduler_stub.cc",
83 "scheduler_stub.h", 89 "scheduler_stub.h",
84 ] 90 ]
85 91
86 deps = [ 92 deps = [
87 ":background_offliner", 93 ":background_offliner",
88 "//base", 94 "//base",
89 "//net", 95 "//net",
90 ] 96 ]
91 } 97 }
(...skipping 24 matching lines...) Expand all
116 ":test_support", 122 ":test_support",
117 "//base", 123 "//base",
118 "//base/test:test_support", 124 "//base/test:test_support",
119 "//components/offline_pages/core", 125 "//components/offline_pages/core",
120 "//components/offline_pages/core:switches", 126 "//components/offline_pages/core:switches",
121 "//sql:sql", 127 "//sql:sql",
122 "//testing/gtest", 128 "//testing/gtest",
123 "//url", 129 "//url",
124 ] 130 ]
125 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698