| 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", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 if (is_ios) { | 48 if (is_ios) { |
| 49 sources -= [ "device_id_mac.cc" ] | 49 sources -= [ "device_id_mac.cc" ] |
| 50 } | 50 } |
| 51 | 51 |
| 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 54 | 54 |
| 55 deps = [ | 55 deps = [ |
| 56 "//base:base", | 56 "//base:base", |
| 57 "//base:prefs", | |
| 58 "//components/pref_registry", | 57 "//components/pref_registry", |
| 58 "//components/prefs", |
| 59 "//crypto:crypto", | 59 "//crypto:crypto", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 source_set("user_prefs_tracked_test_support") { | 63 source_set("user_prefs_tracked_test_support") { |
| 64 testonly = true | 64 testonly = true |
| 65 sources = [ | 65 sources = [ |
| 66 "mock_validation_delegate.cc", | 66 "mock_validation_delegate.cc", |
| 67 "mock_validation_delegate.h", | 67 "mock_validation_delegate.h", |
| 68 ] | 68 ] |
| (...skipping 13 matching lines...) Expand all Loading... |
| 82 "pref_hash_store_impl_unittest.cc", | 82 "pref_hash_store_impl_unittest.cc", |
| 83 "pref_service_hash_store_contents_unittest.cc", | 83 "pref_service_hash_store_contents_unittest.cc", |
| 84 "segregated_pref_store_unittest.cc", | 84 "segregated_pref_store_unittest.cc", |
| 85 "tracked_preferences_migration_unittest.cc", | 85 "tracked_preferences_migration_unittest.cc", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 deps = [ | 88 deps = [ |
| 89 ":user_prefs_tracked", | 89 ":user_prefs_tracked", |
| 90 ":user_prefs_tracked_test_support", | 90 ":user_prefs_tracked_test_support", |
| 91 "//base:base", | 91 "//base:base", |
| 92 "//base:prefs", | 92 "//components/prefs:test_support", |
| 93 "//base:prefs_test_support", | |
| 94 "//testing/gtest", | 93 "//testing/gtest", |
| 95 ] | 94 ] |
| 96 } | 95 } |
| OLD | NEW |