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

Unified Diff: components/wifi_sync.gypi

Issue 675993005: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: fix style issues, and unnecessary virtual functions Created 6 years, 2 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/wifi_sync.gypi
diff --git a/components/wifi_sync.gypi b/components/wifi_sync.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..59988729c5dcb7a4802e1a9983ff868c37042083
--- /dev/null
+++ b/components/wifi_sync.gypi
@@ -0,0 +1,26 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/wifi_sync
erikwright (departed) 2014/10/29 18:18:25 missing?
mukesh agrawal 2014/10/30 18:41:28 Done.
+ 'target_name': 'wifi_sync',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../chromeos/chromeos.gyp:chromeos',
+ '../sync/sync.gyp:sync',
+ ],
+ 'sources': [
+ 'wifi_sync/wifi_credential_syncable_service.cc',
+ 'wifi_sync/wifi_credential_syncable_service.h',
+ 'wifi_sync/wifi_credential_syncable_service_factory.cc',
+ 'wifi_sync/wifi_credential_syncable_service_factory.h',
+ 'wifi_sync/wifi_security_class.cc',
+ 'wifi_sync/wifi_security_class.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698