| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("user_prefs_tracked") { | 5 static_library("user_prefs_tracked") { |
| 6 sources = [ | 6 sources = [ |
| 7 "device_id.h", | 7 "device_id.h", |
| 8 "device_id_mac.cc", | 8 "device_id_mac.cc", |
| 9 "device_id_stub.cc", | 9 "device_id_stub.cc", |
| 10 "device_id_win.cc", | 10 "device_id_win.cc", |
| 11 "dictionary_hash_store_contents.cc", | 11 "dictionary_hash_store_contents.cc", |
| 12 "dictionary_hash_store_contents.h", | 12 "dictionary_hash_store_contents.h", |
| 13 "hash_store_contents.h", | 13 "hash_store_contents.h", |
| 14 "interceptable_pref_filter.cc", | 14 "interceptable_pref_filter.cc", |
| 15 "interceptable_pref_filter.h", | 15 "interceptable_pref_filter.h", |
| 16 "pref_hash_calculator.cc", | 16 "pref_hash_calculator.cc", |
| 17 "pref_hash_calculator.h", | 17 "pref_hash_calculator.h", |
| 18 "pref_hash_filter.cc", | 18 "pref_hash_filter.cc", |
| 19 "pref_hash_filter.h", | 19 "pref_hash_filter.h", |
| 20 "pref_hash_store.h", | 20 "pref_hash_store.h", |
| 21 "pref_hash_store_impl.cc", | 21 "pref_hash_store_impl.cc", |
| 22 "pref_hash_store_impl.h", | 22 "pref_hash_store_impl.h", |
| 23 "pref_hash_store_transaction.h", | 23 "pref_hash_store_transaction.h", |
| 24 "pref_names.cc", | 24 "pref_names.cc", |
| 25 "pref_names.h", | 25 "pref_names.h", |
| 26 "pref_service_hash_store_contents.cc", | |
| 27 "pref_service_hash_store_contents.h", | |
| 28 "segregated_pref_store.cc", | 26 "segregated_pref_store.cc", |
| 29 "segregated_pref_store.h", | 27 "segregated_pref_store.h", |
| 30 "tracked_atomic_preference.cc", | 28 "tracked_atomic_preference.cc", |
| 31 "tracked_atomic_preference.h", | 29 "tracked_atomic_preference.h", |
| 32 "tracked_preference.h", | 30 "tracked_preference.h", |
| 33 "tracked_preference_helper.cc", | 31 "tracked_preference_helper.cc", |
| 34 "tracked_preference_helper.h", | 32 "tracked_preference_helper.h", |
| 35 "tracked_preference_histogram_names.cc", | 33 "tracked_preference_histogram_names.cc", |
| 36 "tracked_preference_histogram_names.h", | 34 "tracked_preference_histogram_names.h", |
| 37 "tracked_preference_validation_delegate.h", | 35 "tracked_preference_validation_delegate.h", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ] | 67 ] |
| 70 } | 68 } |
| 71 | 69 |
| 72 source_set("unit_tests") { | 70 source_set("unit_tests") { |
| 73 testonly = true | 71 testonly = true |
| 74 sources = [ | 72 sources = [ |
| 75 "device_id_unittest.cc", | 73 "device_id_unittest.cc", |
| 76 "pref_hash_calculator_unittest.cc", | 74 "pref_hash_calculator_unittest.cc", |
| 77 "pref_hash_filter_unittest.cc", | 75 "pref_hash_filter_unittest.cc", |
| 78 "pref_hash_store_impl_unittest.cc", | 76 "pref_hash_store_impl_unittest.cc", |
| 79 "pref_service_hash_store_contents_unittest.cc", | |
| 80 "segregated_pref_store_unittest.cc", | 77 "segregated_pref_store_unittest.cc", |
| 81 "tracked_preferences_migration_unittest.cc", | 78 "tracked_preferences_migration_unittest.cc", |
| 82 ] | 79 ] |
| 83 | 80 |
| 84 deps = [ | 81 deps = [ |
| 85 ":user_prefs_tracked", | 82 ":user_prefs_tracked", |
| 86 ":user_prefs_tracked_test_support", | 83 ":user_prefs_tracked_test_support", |
| 87 "//base:base", | 84 "//base:base", |
| 88 "//components/prefs:test_support", | 85 "//components/prefs:test_support", |
| 89 "//testing/gtest", | 86 "//testing/gtest", |
| 90 ] | 87 ] |
| 91 } | 88 } |
| OLD | NEW |