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

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

Issue 2483463002: [Offline Pages] Feature flag to allow concurrent background loading on svelte (Closed)
Patch Set: Merge Created 4 years, 1 month 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 29 matching lines...) Expand all
40 "save_page_request.h", 40 "save_page_request.h",
41 "scheduler.h", 41 "scheduler.h",
42 "update_request_task.cc", 42 "update_request_task.cc",
43 "update_request_task.h", 43 "update_request_task.h",
44 ] 44 ]
45 45
46 deps = [ 46 deps = [
47 "//base", 47 "//base",
48 "//components/keyed_service/core", 48 "//components/keyed_service/core",
49 "//components/offline_pages:offline_pages", 49 "//components/offline_pages:offline_pages",
50 "//components/offline_pages:switches",
50 "//components/offline_pages/core", 51 "//components/offline_pages/core",
51 "//net", 52 "//net",
52 "//sql:sql", 53 "//sql:sql",
53 "//url", 54 "//url",
54 ] 55 ]
55 } 56 }
56 57
57 source_set("unit_tests") { 58 source_set("unit_tests") {
58 testonly = true 59 testonly = true
59 sources = [ 60 sources = [
60 "change_requests_state_task_unittest.cc", 61 "change_requests_state_task_unittest.cc",
61 "mark_attempt_aborted_task_unittest.cc", 62 "mark_attempt_aborted_task_unittest.cc",
62 "mark_attempt_completed_task_unittest.cc", 63 "mark_attempt_completed_task_unittest.cc",
63 "mark_attempt_started_task_unittest.cc", 64 "mark_attempt_started_task_unittest.cc",
64 "remove_requests_task_unittest.cc", 65 "remove_requests_task_unittest.cc",
65 "request_coordinator_event_logger_unittest.cc", 66 "request_coordinator_event_logger_unittest.cc",
66 "request_coordinator_unittest.cc", 67 "request_coordinator_unittest.cc",
67 "request_picker_unittest.cc", 68 "request_picker_unittest.cc",
68 "request_queue_store_unittest.cc", 69 "request_queue_store_unittest.cc",
69 "request_queue_unittest.cc", 70 "request_queue_unittest.cc",
70 "save_page_request_unittest.cc", 71 "save_page_request_unittest.cc",
71 ] 72 ]
72 73
73 deps = [ 74 deps = [
74 ":background_offliner", 75 ":background_offliner",
75 "//base", 76 "//base",
76 "//base/test:test_support", 77 "//base/test:test_support",
77 "//components/offline_pages:offline_pages", 78 "//components/offline_pages:offline_pages",
79 "//components/offline_pages:switches",
78 "//testing/gtest", 80 "//testing/gtest",
79 "//url", 81 "//url",
80 ] 82 ]
81 } 83 }
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | components/offline_pages/background/request_coordinator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698