| 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 component("prefs") { | 5 component("prefs") { |
| 6 sources = [ | 6 sources = [ |
| 7 "command_line_pref_store.cc", |
| 8 "command_line_pref_store.h", |
| 7 "default_pref_store.cc", | 9 "default_pref_store.cc", |
| 8 "default_pref_store.h", | 10 "default_pref_store.h", |
| 9 "in_memory_pref_store.cc", | 11 "in_memory_pref_store.cc", |
| 10 "in_memory_pref_store.h", | 12 "in_memory_pref_store.h", |
| 11 "json_pref_store.cc", | 13 "json_pref_store.cc", |
| 12 "json_pref_store.h", | 14 "json_pref_store.h", |
| 13 "overlay_user_pref_store.cc", | 15 "overlay_user_pref_store.cc", |
| 14 "overlay_user_pref_store.h", | 16 "overlay_user_pref_store.h", |
| 15 "pref_change_registrar.cc", | 17 "pref_change_registrar.cc", |
| 16 "pref_change_registrar.h", | 18 "pref_change_registrar.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 ] | 97 ] |
| 96 | 98 |
| 97 deps = [ | 99 deps = [ |
| 98 ":test_support", | 100 ":test_support", |
| 99 "//base", | 101 "//base", |
| 100 "//base/test:test_support", | 102 "//base/test:test_support", |
| 101 "//testing/gmock", | 103 "//testing/gmock", |
| 102 "//testing/gtest", | 104 "//testing/gtest", |
| 103 ] | 105 ] |
| 104 } | 106 } |
| OLD | NEW |