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

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

Issue 2898393002: Split Android-specific dependency from BackgroundLoaderOffliner. Create a subfolder of c/b/offline_… (Closed)
Patch Set: more build fixes 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 = [
11 "add_request_task.cc", 11 "add_request_task.cc",
12 "add_request_task.h", 12 "add_request_task.h",
13 "change_requests_state_task.cc", 13 "change_requests_state_task.cc",
14 "change_requests_state_task.h", 14 "change_requests_state_task.h",
15 "cleanup_task.cc", 15 "cleanup_task.cc",
16 "cleanup_task.h", 16 "cleanup_task.h",
17 "cleanup_task_factory.cc", 17 "cleanup_task_factory.cc",
18 "cleanup_task_factory.h", 18 "cleanup_task_factory.h",
19 "connection_notifier.cc", 19 "connection_notifier.cc",
20 "connection_notifier.h", 20 "connection_notifier.h",
21 "device_conditions.h", 21 "device_conditions.h",
22 "get_requests_task.cc", 22 "get_requests_task.cc",
23 "get_requests_task.h", 23 "get_requests_task.h",
24 "initialize_store_task.cc", 24 "initialize_store_task.cc",
25 "initialize_store_task.h", 25 "initialize_store_task.h",
26 "load_termination_listener.h",
26 "mark_attempt_aborted_task.cc", 27 "mark_attempt_aborted_task.cc",
27 "mark_attempt_aborted_task.h", 28 "mark_attempt_aborted_task.h",
28 "mark_attempt_completed_task.cc", 29 "mark_attempt_completed_task.cc",
29 "mark_attempt_completed_task.h", 30 "mark_attempt_completed_task.h",
30 "mark_attempt_started_task.cc", 31 "mark_attempt_started_task.cc",
31 "mark_attempt_started_task.h", 32 "mark_attempt_started_task.h",
32 "offliner.h", 33 "offliner.h",
33 "offliner_policy.h", 34 "offliner_policy.h",
34 "offliner_policy_utils.cc", 35 "offliner_policy_utils.cc",
35 "offliner_policy_utils.h", 36 "offliner_policy_utils.h",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 ":test_support", 117 ":test_support",
117 "//base", 118 "//base",
118 "//base/test:test_support", 119 "//base/test:test_support",
119 "//components/offline_pages/core", 120 "//components/offline_pages/core",
120 "//components/offline_pages/core:switches", 121 "//components/offline_pages/core:switches",
121 "//sql:sql", 122 "//sql:sql",
122 "//testing/gtest", 123 "//testing/gtest",
123 "//url", 124 "//url",
124 ] 125 ]
125 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698