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

Unified Diff: components/user_prefs/tracked/BUILD.gn

Issue 2782803002: Move tracked prefs into services/preferences/tracked. (Closed)
Patch Set: rebase Created 3 years, 9 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/BUILD.gn ('k') | components/user_prefs/tracked/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/user_prefs/tracked/BUILD.gn
diff --git a/components/user_prefs/tracked/BUILD.gn b/components/user_prefs/tracked/BUILD.gn
deleted file mode 100644
index c1022463af7cc0fec653fcd2e0689d02eed7cd72..0000000000000000000000000000000000000000
--- a/components/user_prefs/tracked/BUILD.gn
+++ /dev/null
@@ -1,95 +0,0 @@
-# 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.
-
-static_library("user_prefs_tracked") {
- sources = [
- "device_id.h",
- "device_id_mac.cc",
- "device_id_stub.cc",
- "device_id_win.cc",
- "dictionary_hash_store_contents.cc",
- "dictionary_hash_store_contents.h",
- "hash_store_contents.h",
- "interceptable_pref_filter.cc",
- "interceptable_pref_filter.h",
- "pref_hash_calculator.cc",
- "pref_hash_calculator.h",
- "pref_hash_filter.cc",
- "pref_hash_filter.h",
- "pref_hash_store.h",
- "pref_hash_store_impl.cc",
- "pref_hash_store_impl.h",
- "pref_hash_store_transaction.h",
- "pref_names.cc",
- "pref_names.h",
- "registry_hash_store_contents_win.cc",
- "registry_hash_store_contents_win.h",
- "segregated_pref_store.cc",
- "segregated_pref_store.h",
- "tracked_atomic_preference.cc",
- "tracked_atomic_preference.h",
- "tracked_preference.h",
- "tracked_preference_helper.cc",
- "tracked_preference_helper.h",
- "tracked_preference_histogram_names.cc",
- "tracked_preference_histogram_names.h",
- "tracked_preferences_migration.cc",
- "tracked_preferences_migration.h",
- "tracked_split_preference.cc",
- "tracked_split_preference.h",
- ]
-
- if (is_win || is_mac) {
- sources -= [ "device_id_stub.cc" ]
- }
-
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
- public_deps = [
- "//services/preferences/public/interfaces",
- ]
-
- deps = [
- "//base:base",
- "//components/pref_registry",
- "//components/prefs",
- "//crypto:crypto",
- ]
-}
-
-static_library("user_prefs_tracked_test_support") {
- testonly = true
- sources = [
- "mock_validation_delegate.cc",
- "mock_validation_delegate.h",
- ]
-
- deps = [
- ":user_prefs_tracked",
- "//base:base",
- ]
-}
-
-source_set("unit_tests") {
- testonly = true
- sources = [
- "device_id_unittest.cc",
- "pref_hash_calculator_unittest.cc",
- "pref_hash_filter_unittest.cc",
- "pref_hash_store_impl_unittest.cc",
- "registry_hash_store_contents_win_unittest.cc",
- "segregated_pref_store_unittest.cc",
- "tracked_preferences_migration_unittest.cc",
- ]
-
- deps = [
- ":user_prefs_tracked",
- ":user_prefs_tracked_test_support",
- "//base:base",
- "//base/test:test_support",
- "//components/prefs:test_support",
- "//testing/gtest",
- ]
-}
« no previous file with comments | « components/BUILD.gn ('k') | components/user_prefs/tracked/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698