Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # GYP version: components/prefs_tracker.gyp:prefs_tracker | |
|
blundell
2015/07/29 09:40:32
out of date.
Jitu( very slow this week)
2015/07/29 13:32:00
Removed...
| |
| 6 static_library("tracked") { | |
| 7 sources = [ | |
| 8 "device_id.h", | |
| 9 "device_id_stub.cc", | |
| 10 "device_id_win.cc", | |
| 11 "dictionary_hash_store_contents.cc", | |
| 12 "dictionary_hash_store_contents.h", | |
| 13 "hash_store_contents.h", | |
| 14 "interceptable_pref_filter.cc", | |
| 15 "interceptable_pref_filter.h", | |
| 16 "pref_hash_calculator.cc", | |
| 17 "pref_hash_calculator.h", | |
| 18 "pref_hash_filter.cc", | |
| 19 "pref_hash_filter.h", | |
| 20 "pref_hash_store.h", | |
| 21 "pref_hash_store_impl.cc", | |
| 22 "pref_hash_store_impl.h", | |
| 23 "pref_hash_store_transaction.h", | |
| 24 "pref_names.cc", | |
| 25 "pref_names.h", | |
| 26 "pref_service_hash_store_contents.cc", | |
| 27 "pref_service_hash_store_contents.h", | |
| 28 "segregated_pref_store.cc", | |
| 29 "segregated_pref_store.h", | |
| 30 "tracked_atomic_preference.cc", | |
| 31 "tracked_atomic_preference.h", | |
| 32 "tracked_preference.h", | |
| 33 "tracked_preference_helper.cc", | |
| 34 "tracked_preference_helper.h", | |
| 35 "tracked_preference_validation_delegate.h", | |
| 36 "tracked_preferences_migration.cc", | |
| 37 "tracked_preferences_migration.h", | |
| 38 "tracked_split_preference.cc", | |
| 39 "tracked_split_preference.h", | |
| 40 ] | |
| 41 | |
| 42 deps = [ | |
| 43 "//components/pref_registry", | |
| 44 ] | |
| 45 } | |
| 46 | |
| 47 source_set("tracked_test_support") { | |
| 48 testonly = true | |
| 49 sources = [ | |
| 50 "mock_validation_delegate.cc", | |
| 51 "mock_validation_delegate.h", | |
| 52 ] | |
| 53 } | |
| 54 | |
| 55 source_set("unit_tests") { | |
| 56 testonly = true | |
| 57 sources = [ | |
| 58 "device_id_unittest.cc", | |
| 59 "pref_hash_calculator_unittest.cc", | |
| 60 "pref_hash_filter_unittest.cc", | |
| 61 "pref_hash_store_impl_unittest.cc", | |
| 62 "pref_service_hash_store_contents_unittest.cc", | |
| 63 "segregated_pref_store_unittest.cc", | |
| 64 "tracked_preferences_migration_unittest.cc", | |
| 65 ] | |
| 66 | |
| 67 deps = [ | |
| 68 ":tracked_test_support", | |
| 69 ] | |
| 70 } | |
| OLD | NEW |