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

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

Issue 2872933003: Add base persistence interfaces for Prefetching Offline Pages. (Closed)
Patch Set: Addressed comments and other changes; added constants file. 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("prefetch") { 9 static_library("prefetch") {
10 sources = [ 10 sources = [
11 "prefetch_constants.h",
12 "prefetch_item.cc",
13 "prefetch_item.h",
11 "prefetch_request_fetcher.cc", 14 "prefetch_request_fetcher.cc",
12 "prefetch_request_fetcher.h", 15 "prefetch_request_fetcher.h",
13 "prefetch_service.h", 16 "prefetch_service.h",
14 "prefetch_service_impl.cc", 17 "prefetch_service_impl.cc",
15 "prefetch_service_impl.h", 18 "prefetch_service_impl.h",
16 ] 19 ]
17 20
18 deps = [ 21 deps = [
19 "//base", 22 "//base",
20 "//components/keyed_service/core", 23 "//components/keyed_service/core",
(...skipping 12 matching lines...) Expand all
33 36
34 deps = [ 37 deps = [
35 ":prefetch", 38 ":prefetch",
36 "//components/offline_pages/core", 39 "//components/offline_pages/core",
37 "//net:test_support", 40 "//net:test_support",
38 "//testing/gmock", 41 "//testing/gmock",
39 "//testing/gtest", 42 "//testing/gtest",
40 "//url", 43 "//url",
41 ] 44 ]
42 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698