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

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

Issue 1947323002: [Offline Pages] Implement OfflinePageStorageManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
fgorski 2016/05/05 04:53:08 don't forget to update the gyp file accordingly.
romax 2016/05/05 21:00:02 Done.
10 static_library("offline_pages") { 10 static_library("offline_pages") {
11 sources = [ 11 sources = [
12 "client_policy_controller.cc", 12 "client_policy_controller.cc",
13 "client_policy_controller.h", 13 "client_policy_controller.h",
14 "offline_page_archiver.h", 14 "offline_page_archiver.h",
15 "offline_page_client_policy.h", 15 "offline_page_client_policy.h",
16 "offline_page_item.cc", 16 "offline_page_item.cc",
17 "offline_page_item.h", 17 "offline_page_item.h",
18 "offline_page_metadata_store.cc", 18 "offline_page_metadata_store.cc",
19 "offline_page_metadata_store.h", 19 "offline_page_metadata_store.h",
20 "offline_page_metadata_store_impl.cc", 20 "offline_page_metadata_store_impl.cc",
21 "offline_page_metadata_store_impl.h", 21 "offline_page_metadata_store_impl.h",
22 "offline_page_model.cc", 22 "offline_page_model.cc",
23 "offline_page_model.h", 23 "offline_page_model.h",
24 "offline_page_storage_manager.cc",
25 "offline_page_storage_manager.h",
24 "snapshot_controller.cc", 26 "snapshot_controller.cc",
25 "snapshot_controller.h", 27 "snapshot_controller.h",
26 ] 28 ]
27 29
28 deps = [ 30 deps = [
29 ":switches", 31 ":switches",
30 "//base", 32 "//base",
31 "//components/bookmarks/browser", 33 "//components/bookmarks/browser",
32 "//components/keyed_service/core", 34 "//components/keyed_service/core",
33 "//components/leveldb_proto", 35 "//components/leveldb_proto",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 ] 92 ]
91 } 93 }
92 94
93 if (is_android) { 95 if (is_android) {
94 java_cpp_enum("offline_page_model_enums_java") { 96 java_cpp_enum("offline_page_model_enums_java") {
95 sources = [ 97 sources = [
96 "offline_page_model.h", 98 "offline_page_model.h",
97 ] 99 ]
98 } 100 }
99 } 101 }
OLDNEW
« no previous file with comments | « no previous file | components/offline_pages/offline_page_model.h » ('j') | components/offline_pages/offline_page_model.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698