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

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: remove stub wifi_credential_syncable_service Created 6 years, 1 month 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/crx_file.gypi b/components/wifi_sync.gypi
similarity index 56%
copy from components/crx_file.gypi
copy to components/wifi_sync.gypi
index 036550d39592ffcf9722d500d1f1e6349065009d..c52aa7b2b95390dacdc49eadf9cf9a84180a0032 100644
--- a/components/crx_file.gypi
+++ b/components/wifi_sync.gypi
@@ -5,20 +5,21 @@
{
'targets': [
{
- 'target_name': 'crx_file',
+ # GN version: //components/wifi_sync
mukesh agrawal 2014/11/03 17:57:04 Please ignore the "OLD" half of this diff. This wa
+ 'target_name': 'wifi_sync',
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
],
- 'include_dirs': [
- '..',
- ],
'sources': [
- 'crx_file/constants.h',
- 'crx_file/crx_file.cc',
- 'crx_file/crx_file.h',
- 'crx_file/id_util.cc',
- 'crx_file/id_util.h',
+ 'wifi_sync/wifi_security_class.h',
+ ],
+ 'conditions': [
+ ['chromeos==1', {
+ 'sources': [
+ 'wifi_sync/wifi_security_class_chromeos.cc',
+ ]
+ }],
],
},
],

Powered by Google App Engine
This is Rietveld 408576698