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

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

Issue 2202113002: API to provide status of save page reqeusts to API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR fixes per DougArnett and FGorski. Also gets rid of status. Created 4 years, 4 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 # GYP: //components/offline_pages.gypi:background_offliner 9 # GYP: //components/offline_pages.gypi:background_offliner
10 static_library("background_offliner") { 10 static_library("background_offliner") {
11 sources = [ 11 sources = [
12 "device_conditions.h", 12 "device_conditions.h",
13 "offliner.h", 13 "offliner.h",
14 "offliner_factory.h", 14 "offliner_factory.h",
15 "offliner_policy.h", 15 "offliner_policy.h",
16 "request_coordinator.cc", 16 "request_coordinator.cc",
17 "request_coordinator.h", 17 "request_coordinator.h",
18 "request_coordinator_event_logger.cc", 18 "request_coordinator_event_logger.cc",
19 "request_coordinator_event_logger.h", 19 "request_coordinator_event_logger.h",
20 "request_picker.cc", 20 "request_picker.cc",
21 "request_picker.h", 21 "request_picker.h",
22 "request_queue.cc", 22 "request_queue.cc",
23 "request_queue.h", 23 "request_queue.h",
24 "request_queue_in_memory_store.cc", 24 "request_queue_in_memory_store.cc",
25 "request_queue_in_memory_store.h", 25 "request_queue_in_memory_store.h",
26 "request_queue_store.h", 26 "request_queue_store.h",
27 "request_queue_store_sql.cc", 27 "request_queue_store_sql.cc",
28 "request_queue_store_sql.h", 28 "request_queue_store_sql.h",
29 "request_status.h",
dougarnett 2016/08/03 04:27:19 revert
Pete Williamson 2016/08/03 20:13:44 Done.
29 "save_page_request.cc", 30 "save_page_request.cc",
30 "save_page_request.h", 31 "save_page_request.h",
31 "scheduler.h", 32 "scheduler.h",
32 ] 33 ]
33 34
34 deps = [ 35 deps = [
35 "//base", 36 "//base",
36 "//components/keyed_service/core", 37 "//components/keyed_service/core",
37 "//components/offline_pages:offline_pages", 38 "//components/offline_pages:offline_pages",
38 "//net", 39 "//net",
(...skipping 15 matching lines...) Expand all
54 55
55 deps = [ 56 deps = [
56 ":background_offliner", 57 ":background_offliner",
57 "//base", 58 "//base",
58 "//base/test:test_support", 59 "//base/test:test_support",
59 "//components/offline_pages:offline_pages", 60 "//components/offline_pages:offline_pages",
60 "//testing/gtest", 61 "//testing/gtest",
61 "//url", 62 "//url",
62 ] 63 ]
63 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698