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 source_set("flags_ui") { | 5 source_set("flags_ui") { |
6 sources = [ | 6 sources = [ |
| 7 "feature_entry.cc", |
| 8 "feature_entry.h", |
| 9 "feature_entry_macros.h", |
7 "flags_storage.h", | 10 "flags_storage.h", |
8 "flags_ui_constants.cc", | 11 "flags_ui_constants.cc", |
9 "flags_ui_constants.h", | 12 "flags_ui_constants.h", |
10 "flags_ui_pref_names.cc", | 13 "flags_ui_pref_names.cc", |
11 "flags_ui_pref_names.h", | 14 "flags_ui_pref_names.h", |
12 "pref_service_flags_storage.cc", | 15 "pref_service_flags_storage.cc", |
13 "pref_service_flags_storage.h", | 16 "pref_service_flags_storage.h", |
14 ] | 17 ] |
15 | 18 |
16 deps = [ | 19 deps = [ |
17 "//base", | 20 "//base", |
18 "//base:prefs", | 21 "//base:prefs", |
| 22 "//components/strings", |
| 23 "//ui/base", |
19 ] | 24 ] |
20 } | 25 } |
OLD | NEW |