OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("browser") { | 5 source_set("browser") { |
6 sources = [ | 6 sources = [ |
7 "language_state.cc", | 7 "language_state.cc", |
8 "language_state.h", | 8 "language_state.h", |
9 "options_menu_model.cc", | 9 "options_menu_model.cc", |
10 "options_menu_model.h", | 10 "options_menu_model.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "//components/language_usage_metrics", | 44 "//components/language_usage_metrics", |
45 "//components/resources:components_resources", | 45 "//components/resources:components_resources", |
46 "//components/strings", | 46 "//components/strings", |
47 "//components/translate/core/common", | 47 "//components/translate/core/common", |
48 "//net", | 48 "//net", |
49 "//third_party/icu", | 49 "//third_party/icu", |
50 "//ui/base", | 50 "//ui/base", |
51 "//url", | 51 "//url", |
52 ] | 52 ] |
53 } | 53 } |
54 | |
55 source_set("unit_tests") { | |
56 testonly = true | |
57 sources = [ | |
58 "language_state_unittest.cc", | |
59 "translate_browser_metrics_unittest.cc", | |
60 "translate_language_list_unittest.cc", | |
61 "translate_prefs_unittest.cc", | |
62 "translate_script_unittest.cc", | |
63 ] | |
64 deps = [ | |
65 ":browser", | |
66 "//testing/gtest", | |
67 ] | |
68 } | |
OLD | NEW |