| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "//base:base", | 52 "//base:base", |
| 53 "//components/pref_registry", | 53 "//components/pref_registry", |
| 54 "//components/prefs", | 54 "//components/prefs", |
| 55 "//crypto:crypto", | 55 "//crypto:crypto", |
| 56 ] | 56 ] |
| 57 } | 57 } |
| 58 | 58 |
| 59 source_set("user_prefs_tracked_test_support") { | 59 static_library("user_prefs_tracked_test_support") { |
| 60 testonly = true | 60 testonly = true |
| 61 sources = [ | 61 sources = [ |
| 62 "mock_validation_delegate.cc", | 62 "mock_validation_delegate.cc", |
| 63 "mock_validation_delegate.h", | 63 "mock_validation_delegate.h", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 deps = [ | 66 deps = [ |
| 67 ":user_prefs_tracked", | 67 ":user_prefs_tracked", |
| 68 "//base:base", | 68 "//base:base", |
| 69 ] | 69 ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 ":user_prefs_tracked", | 85 ":user_prefs_tracked", |
| 86 ":user_prefs_tracked_test_support", | 86 ":user_prefs_tracked_test_support", |
| 87 "//base:base", | 87 "//base:base", |
| 88 "//components/prefs:test_support", | 88 "//components/prefs:test_support", |
| 89 "//testing/gtest", | 89 "//testing/gtest", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| OLD | NEW |