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