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

Unified Diff: components/user_prefs.gypi

Issue 1227973003: Componentize //chrome/browser/prefs/tracked. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments 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
Index: components/user_prefs.gypi
diff --git a/components/user_prefs.gypi b/components/user_prefs.gypi
index 3554d0d9ae925ae079508fe9dbea4d61d0bf6a96..381cd48b05ebc6021f022c2f547d2fd2e56463fb 100644
--- a/components/user_prefs.gypi
+++ b/components/user_prefs.gypi
@@ -23,5 +23,61 @@
'user_prefs/user_prefs_export.h',
],
},
+ {
+ 'target_name': 'user_prefs_tracked',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ ],
+ 'sources': [
+ 'user_prefs/tracked/device_id.h',
+ 'user_prefs/tracked/device_id_stub.cc',
gab 2015/07/29 18:12:14 device_id_stub.cc needs to be excluded on Windows,
Jitu( very slow this week) 2015/07/30 08:06:13 Done.
+ 'user_prefs/tracked/device_id_win.cc',
+ 'user_prefs/tracked/dictionary_hash_store_contents.cc',
+ 'user_prefs/tracked/dictionary_hash_store_contents.h',
+ 'user_prefs/tracked/hash_store_contents.h',
+ 'user_prefs/tracked/interceptable_pref_filter.cc',
+ 'user_prefs/tracked/interceptable_pref_filter.h',
+ 'user_prefs/tracked/pref_hash_calculator.cc',
+ 'user_prefs/tracked/pref_hash_calculator.h',
+ 'user_prefs/tracked/pref_hash_filter.cc',
+ 'user_prefs/tracked/pref_hash_filter.h',
+ 'user_prefs/tracked/pref_hash_store.h',
+ 'user_prefs/tracked/pref_hash_store_impl.cc',
+ 'user_prefs/tracked/pref_hash_store_impl.h',
+ 'user_prefs/tracked/pref_hash_store_transaction.h',
+ 'user_prefs/tracked/pref_names.cc',
+ 'user_prefs/tracked/pref_names.h',
+ 'user_prefs/tracked/pref_service_hash_store_contents.cc',
+ 'user_prefs/tracked/pref_service_hash_store_contents.h',
+ 'user_prefs/tracked/segregated_pref_store.cc',
+ 'user_prefs/tracked/segregated_pref_store.h',
+ 'user_prefs/tracked/tracked_atomic_preference.cc',
+ 'user_prefs/tracked/tracked_atomic_preference.h',
+ 'user_prefs/tracked/tracked_preference.h',
+ 'user_prefs/tracked/tracked_preference_helper.cc',
+ 'user_prefs/tracked/tracked_preference_helper.h',
+ 'user_prefs/tracked/tracked_preference_validation_delegate.h',
+ 'user_prefs/tracked/tracked_preferences_migration.cc',
+ 'user_prefs/tracked/tracked_preferences_migration.h',
+ 'user_prefs/tracked/tracked_split_preference.cc',
+ 'user_prefs/tracked/tracked_split_preference.h',
+ ],
+ },
+ {
+ 'target_name': 'user_prefs_tracked_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ ],
+ 'sources': [
+ 'user_prefs/tracked/mock_validation_delegate.cc',
+ 'user_prefs/tracked/mock_validation_delegate.h',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698