OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 static_library("syncable_prefs") { | 7 static_library("syncable_prefs") { |
8 sources = [ | 8 sources = [ |
9 "pref_model_associator.cc", | 9 "pref_model_associator.cc", |
10 "pref_model_associator.h", | 10 "pref_model_associator.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 sources = [ | 57 sources = [ |
58 "pref_model_associator_unittest.cc", | 58 "pref_model_associator_unittest.cc", |
59 "pref_service_syncable_unittest.cc", | 59 "pref_service_syncable_unittest.cc", |
60 ] | 60 ] |
61 | 61 |
62 deps = [ | 62 deps = [ |
63 ":syncable_prefs", | 63 ":syncable_prefs", |
64 ":test_support", | 64 ":test_support", |
65 "//components/pref_registry", | 65 "//components/pref_registry", |
66 "//components/prefs", | 66 "//components/prefs", |
67 "//components/sync:test_support_sync_api", | 67 "//components/sync:test_support_sync_model", |
68 "//testing/gtest", | 68 "//testing/gtest", |
69 ] | 69 ] |
70 } | 70 } |
OLD | NEW |