| 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 "base_prefs_export.h", | 7 "base_prefs_export.h", |
| 8 "command_line_pref_store.cc", | 8 "command_line_pref_store.cc", |
| 9 "command_line_pref_store.h", | 9 "command_line_pref_store.h", |
| 10 "default_pref_store.cc", | 10 "default_pref_store.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "pref_store.cc", | 36 "pref_store.cc", |
| 37 "pref_store.h", | 37 "pref_store.h", |
| 38 "pref_value_map.cc", | 38 "pref_value_map.cc", |
| 39 "pref_value_map.h", | 39 "pref_value_map.h", |
| 40 "pref_value_store.cc", | 40 "pref_value_store.cc", |
| 41 "pref_value_store.h", | 41 "pref_value_store.h", |
| 42 "scoped_user_pref_update.cc", | 42 "scoped_user_pref_update.cc", |
| 43 "scoped_user_pref_update.h", | 43 "scoped_user_pref_update.h", |
| 44 "value_map_pref_store.cc", | 44 "value_map_pref_store.cc", |
| 45 "value_map_pref_store.h", | 45 "value_map_pref_store.h", |
| 46 "writeable_pref_store.cc", |
| 46 "writeable_pref_store.h", | 47 "writeable_pref_store.h", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ] | 50 defines = [ "COMPONENTS_PREFS_IMPLEMENTATION" ] |
| 50 | 51 |
| 51 deps = [ | 52 deps = [ |
| 52 "//base", | 53 "//base", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 | 56 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ] | 94 ] |
| 94 | 95 |
| 95 deps = [ | 96 deps = [ |
| 96 ":test_support", | 97 ":test_support", |
| 97 "//base", | 98 "//base", |
| 98 "//base/test:test_support", | 99 "//base/test:test_support", |
| 99 "//testing/gmock", | 100 "//testing/gmock", |
| 100 "//testing/gtest", | 101 "//testing/gtest", |
| 101 ] | 102 ] |
| 102 } | 103 } |
| OLD | NEW |