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

Unified Diff: components/offline_pages.gypi

Issue 1226173004: Componentize //chrome/browser/offline_pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated for android port Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/offline_pages/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_pages.gypi
diff --git a/components/offline_pages.gypi b/components/offline_pages.gypi
index 668c8062dc5040d89c7f7edb2be31ab71151d7cc..b71297f5b578fa100254ee295750f0e2b164d5d8 100644
--- a/components/offline_pages.gypi
+++ b/components/offline_pages.gypi
@@ -15,7 +15,10 @@
'../base/base.gyp:base',
'../net/net.gyp:net',
'../url/url.gyp:url_lib',
+ '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
+ 'components.gyp:leveldb_proto',
'keyed_service_core',
+ 'offline_pages_proto',
],
'sources': [
'offline_pages/offline_page_archiver.h',
@@ -25,7 +28,21 @@
'offline_pages/offline_page_model.h',
'offline_pages/offline_page_metadata_store.cc',
'offline_pages/offline_page_metadata_store.h',
+ 'offline_pages/offline_page_metadata_store_impl.cc',
+ 'offline_pages/offline_page_metadata_store_impl.h',
],
},
+ {
+ # Protobuf compiler / generator for the offline page item protocol buffer.
+ # GN version: //components/offline_pages/proto
+ 'target_name': 'offline_pages_proto',
+ 'type': 'static_library',
+ 'sources': [ 'offline_pages/proto/offline_pages.proto', ],
+ 'variables': {
+ 'proto_in_dir': 'offline_pages/proto',
+ 'proto_out_dir': 'components/offline_pages/proto',
+ },
+ 'includes': [ '../build/protoc.gypi', ],
+ },
],
}
« no previous file with comments | « components/components_tests.gyp ('k') | components/offline_pages/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698