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

Side by Side Diff: components/offline_pages.gypi

Issue 2007523003: Revert of delete the levelDB storage implementation. (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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN: //components/offline_pages:offline_pages 8 # GN: //components/offline_pages:offline_pages
9 'target_name': 'offline_pages', 9 'target_name': 'offline_pages',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../net/net.gyp:net', 16 '../net/net.gyp:net',
17 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
18 '../sql/sql.gyp:sql', 18 '../sql/sql.gyp:sql',
19 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
20 'components.gyp:leveldb_proto',
19 'keyed_service_core', 21 'keyed_service_core',
22 'offline_pages_proto',
20 ], 23 ],
21 'sources': [ 24 'sources': [
22 'offline_pages/archive_manager.cc', 25 'offline_pages/archive_manager.cc',
23 'offline_pages/archive_manager.h', 26 'offline_pages/archive_manager.h',
24 'offline_pages/client_policy_controller.cc', 27 'offline_pages/client_policy_controller.cc',
25 'offline_pages/client_policy_controller.h', 28 'offline_pages/client_policy_controller.h',
26 'offline_pages/offline_page_archiver.h', 29 'offline_pages/offline_page_archiver.h',
27 'offline_pages/offline_page_client_policy.h', 30 'offline_pages/offline_page_client_policy.h',
28 'offline_pages/offline_page_feature.cc', 31 'offline_pages/offline_page_feature.cc',
29 'offline_pages/offline_page_feature.h', 32 'offline_pages/offline_page_feature.h',
30 'offline_pages/offline_page_item.cc', 33 'offline_pages/offline_page_item.cc',
31 'offline_pages/offline_page_item.h', 34 'offline_pages/offline_page_item.h',
32 'offline_pages/offline_page_metadata_store.cc', 35 'offline_pages/offline_page_metadata_store.cc',
33 'offline_pages/offline_page_metadata_store.h', 36 'offline_pages/offline_page_metadata_store.h',
37 'offline_pages/offline_page_metadata_store_impl.cc',
38 'offline_pages/offline_page_metadata_store_impl.h',
34 'offline_pages/offline_page_model.cc', 39 'offline_pages/offline_page_model.cc',
35 'offline_pages/offline_page_model.h', 40 'offline_pages/offline_page_model.h',
36 'offline_pages/offline_page_storage_manager.cc', 41 'offline_pages/offline_page_storage_manager.cc',
37 'offline_pages/offline_page_storage_manager.h', 42 'offline_pages/offline_page_storage_manager.h',
38 'offline_pages/offline_page_types.h', 43 'offline_pages/offline_page_types.h',
39 'offline_pages/snapshot_controller.cc', 44 'offline_pages/snapshot_controller.cc',
40 'offline_pages/snapshot_controller.h', 45 'offline_pages/snapshot_controller.h',
41 'offline_pages/offline_page_metadata_store_sql.cc', 46 'offline_pages/offline_page_metadata_store_sql.cc',
42 'offline_pages/offline_page_metadata_store_sql.h', 47 'offline_pages/offline_page_metadata_store_sql.h',
43 ], 48 ],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 '../url/url.gyp:url_lib', 87 '../url/url.gyp:url_lib',
83 'offline_pages', 88 'offline_pages',
84 ], 89 ],
85 'sources': [ 90 'sources': [
86 'offline_pages/offline_page_test_archiver.h', 91 'offline_pages/offline_page_test_archiver.h',
87 'offline_pages/offline_page_test_archiver.cc', 92 'offline_pages/offline_page_test_archiver.cc',
88 'offline_pages/offline_page_test_store.h', 93 'offline_pages/offline_page_test_store.h',
89 'offline_pages/offline_page_test_store.cc', 94 'offline_pages/offline_page_test_store.cc',
90 ], 95 ],
91 }, 96 },
97 {
98 # Protobuf compiler / generator for the offline page item protocol buffer.
99 # GN version: //components/offline_pages/proto
100 'target_name': 'offline_pages_proto',
101 'type': 'static_library',
102 'sources': [ 'offline_pages/proto/offline_pages.proto', ],
103 'variables': {
104 'proto_in_dir': 'offline_pages/proto',
105 'proto_out_dir': 'components/offline_pages/proto',
106 },
107 'includes': [ '../build/protoc.gypi', ],
108 },
92 ], 109 ],
93 'conditions': [ 110 'conditions': [
94 ['OS == "android"', { 111 ['OS == "android"', {
95 'targets': [ 112 'targets': [
96 { 113 {
97 # GN: //components/offline_pages:offline_page_model_enums_java 114 # GN: //components/offline_pages:offline_page_model_enums_java
98 'target_name': 'offline_page_model_enums_java', 115 'target_name': 'offline_page_model_enums_java',
99 'type': 'none', 116 'type': 'none',
100 'variables': { 117 'variables': {
101 'source_file': 'offline_pages/offline_page_types.h', 118 'source_file': 'offline_pages/offline_page_types.h',
102 }, 119 },
103 'includes': [ '../build/android/java_cpp_enum.gypi' ], 120 'includes': [ '../build/android/java_cpp_enum.gypi' ],
104 }, 121 },
105 ], 122 ],
106 }], 123 }],
107 ], 124 ],
108 } 125 }
OLDNEW
« no previous file with comments | « chrome/browser/android/offline_pages/offline_page_model_factory.cc ('k') | components/offline_pages/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698