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", | 7 "feature_entry.cc", |
8 "feature_entry.h", | 8 "feature_entry.h", |
9 "feature_entry_macros.h", | 9 "feature_entry_macros.h", |
10 "flags_state.cc", | |
11 "flags_state.h", | |
10 "flags_storage.h", | 12 "flags_storage.h", |
11 "flags_ui_constants.cc", | 13 "flags_ui_constants.cc", |
12 "flags_ui_constants.h", | 14 "flags_ui_constants.h", |
13 "flags_ui_pref_names.cc", | 15 "flags_ui_pref_names.cc", |
14 "flags_ui_pref_names.h", | 16 "flags_ui_pref_names.h", |
15 "pref_service_flags_storage.cc", | 17 "pref_service_flags_storage.cc", |
16 "pref_service_flags_storage.h", | 18 "pref_service_flags_storage.h", |
17 ] | 19 ] |
18 | 20 |
19 deps = [ | 21 deps = [ |
20 "//base", | 22 "//base", |
21 "//base:prefs", | 23 "//base:prefs", |
22 "//components/strings", | 24 "//components/strings", |
23 "//ui/base", | 25 "//ui/base", |
26 ":switches", | |
24 ] | 27 ] |
25 } | 28 } |
29 | |
30 source_set("switches") { | |
Alexei Svitkine (slow)
2015/11/16 21:52:54
Why is this a separate source set? If there's a go
sdefresne
2015/11/17 16:28:56
Done (added a comment).
| |
31 sources = [ | |
32 "flags_ui_switches.cc", | |
33 "flags_ui_switches.h", | |
34 ] | |
35 } | |
36 | |
37 source_set("unit_tests") { | |
38 testonly = true | |
39 sources = [ | |
40 "flags_state_unittest.cc", | |
41 ] | |
42 | |
43 deps = [ | |
44 "//base", | |
45 "//base:prefs", | |
46 "//base:prefs_test_support", | |
47 "//components/strings", | |
48 "//testing/gtest", | |
49 ":flags_ui", | |
50 ":switches", | |
51 ] | |
52 } | |
OLD | NEW |