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

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

Issue 1986673002: [Offline Pages] Updated clearing logic in storage manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing trybots. Created 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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:offline_pages 9 # GYP: //components/offline_pages.gypi:offline_pages
10 static_library("offline_pages") { 10 static_library("offline_pages") {
(...skipping 19 matching lines...) Expand all
30 "snapshot_controller.h", 30 "snapshot_controller.h",
31 ] 31 ]
32 32
33 deps = [ 33 deps = [
34 ":switches", 34 ":switches",
35 "//base", 35 "//base",
36 "//components/bookmarks/browser", 36 "//components/bookmarks/browser",
37 "//components/keyed_service/core", 37 "//components/keyed_service/core",
38 "//components/leveldb_proto", 38 "//components/leveldb_proto",
39 "//components/offline_pages/proto:offline_pages_proto", 39 "//components/offline_pages/proto:offline_pages_proto",
40 "//components/prefs:prefs",
40 "//net", 41 "//net",
41 "//sql:sql", 42 "//sql:sql",
42 "//third_party/leveldatabase", 43 "//third_party/leveldatabase",
43 "//url", 44 "//url",
44 ] 45 ]
45 } 46 }
46 47
47 static_library("test_support") { 48 static_library("test_support") {
48 testonly = true 49 testonly = true
49 sources = [ 50 sources = [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ] 86 ]
86 87
87 deps = [ 88 deps = [
88 ":offline_pages", 89 ":offline_pages",
89 ":switches", 90 ":switches",
90 ":test_support", 91 ":test_support",
91 "//base", 92 "//base",
92 "//base/test:test_support", 93 "//base/test:test_support",
93 "//components/leveldb_proto", 94 "//components/leveldb_proto",
94 "//components/offline_pages/proto:offline_pages_proto", 95 "//components/offline_pages/proto:offline_pages_proto",
96 "//components/prefs:test_support",
95 "//testing/gtest", 97 "//testing/gtest",
96 "//url", 98 "//url",
97 ] 99 ]
98 } 100 }
99 101
100 if (is_android) { 102 if (is_android) {
101 java_cpp_enum("offline_page_model_enums_java") { 103 java_cpp_enum("offline_page_model_enums_java") {
102 sources = [ 104 sources = [
103 "offline_page_types.h", 105 "offline_page_types.h",
104 ] 106 ]
105 } 107 }
106 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698