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

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

Issue 2811813002: [Offline Pages] Set up the initial prefetching service. (Closed)
Patch Set: fix compile >:-( Created 3 years, 8 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 static_library("core") { 9 static_library("core") {
10 sources = [ 10 sources = [
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "offline_page_storage_manager_unittest.cc", 101 "offline_page_storage_manager_unittest.cc",
102 "snapshot_controller_unittest.cc", 102 "snapshot_controller_unittest.cc",
103 "task_queue_unittest.cc", 103 "task_queue_unittest.cc",
104 "task_unittest.cc", 104 "task_unittest.cc",
105 ] 105 ]
106 106
107 deps = [ 107 deps = [
108 ":core", 108 ":core",
109 ":switches", 109 ":switches",
110 ":test_support", 110 ":test_support",
111 "prefetch:unit_tests",
111 "recent_tabs:unit_tests", 112 "recent_tabs:unit_tests",
112 "//base", 113 "//base",
113 "//base/test:test_support", 114 "//base/test:test_support",
114 "//sql:sql", 115 "//sql:sql",
115 "//testing/gtest", 116 "//testing/gtest",
116 "//url", 117 "//url",
117 ] 118 ]
118 } 119 }
119 120
120 if (is_android) { 121 if (is_android) {
121 java_cpp_enum("offline_page_model_enums_java") { 122 java_cpp_enum("offline_page_model_enums_java") {
122 sources = [ 123 sources = [
123 "background/request_notifier.h", 124 "background/request_notifier.h",
124 "background/request_queue_results.h", 125 "background/request_queue_results.h",
125 "background/save_page_request.h", 126 "background/save_page_request.h",
126 "downloads/download_ui_item.h", 127 "downloads/download_ui_item.h",
127 "offline_page_types.h", 128 "offline_page_types.h",
128 "offline_store_types.h", 129 "offline_store_types.h",
129 ] 130 ]
130 } 131 }
131 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698