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

Unified Diff: components/offline_pages.gypi

Issue 1160283003: [Offline] Creates metadata store interface for offline pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@offline-pages-1
Patch Set: Adding BUILD.gn updates Created 5 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages.gypi
diff --git a/components/offline_pages.gypi b/components/offline_pages.gypi
index 4afb2fc1ff50e297042ec2261da0b6431529cf81..3a6d09f46510d2a06e1a063f5cf83f3f8c512adb 100644
--- a/components/offline_pages.gypi
+++ b/components/offline_pages.gypi
@@ -8,20 +8,34 @@
# GN: //components/offline_pages:offline_pages
'target_name': 'offline_pages',
'type': 'static_library',
+ 'variables': {
+ 'proto_in_dir': './offline_pages/proto',
+ 'proto_out_dir': 'components/offline_pages/proto',
+ },
'include_dirs': [
'..',
],
'dependencies': [
'../base/base.gyp:base',
'../net/net.gyp:net',
+ '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
+ '../third_party/protobuf/protobuf.gyp:protobuf_lite',
'../url/url.gyp:url_lib',
'keyed_service_core',
],
+ 'includes': [
+ '../build/protoc.gypi'
+ ],
'sources': [
'offline_pages/offline_page_item.cc',
'offline_pages/offline_page_item.h',
'offline_pages/offline_page_model.cc',
'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',
+ 'offline_pages/proto/offline_pages.proto',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698