| 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 static_library("flags_ui") { | 5 static_library("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", | 10 "flags_state.cc", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 source_set("unit_tests") { | 41 source_set("unit_tests") { |
| 42 testonly = true | 42 testonly = true |
| 43 sources = [ | 43 sources = [ |
| 44 "flags_state_unittest.cc", | 44 "flags_state_unittest.cc", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":flags_ui", | 48 ":flags_ui", |
| 49 ":switches", | 49 ":switches", |
| 50 "//base", | 50 "//base", |
| 51 "//base/test:test_support", |
| 51 "//components/prefs:test_support", | 52 "//components/prefs:test_support", |
| 52 "//components/strings", | 53 "//components/strings", |
| 53 "//components/variations", | 54 "//components/variations", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 ] | 56 ] |
| 56 } | 57 } |
| OLD | NEW |