Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: components/translate/core/browser/BUILD.gn

Issue 1987073003: include translate_ui_delegate_unittest to gn build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("browser") { 7 source_set("browser") {
8 sources = [ 8 sources = [
9 "language_state.cc", 9 "language_state.cc",
10 "language_state.h", 10 "language_state.h",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 testonly = true 76 testonly = true
77 sources = [ 77 sources = [
78 "language_state_unittest.cc", 78 "language_state_unittest.cc",
79 "mock_translate_driver.cc", 79 "mock_translate_driver.cc",
80 "mock_translate_driver.h", 80 "mock_translate_driver.h",
81 "translate_browser_metrics_unittest.cc", 81 "translate_browser_metrics_unittest.cc",
82 "translate_language_list_unittest.cc", 82 "translate_language_list_unittest.cc",
83 "translate_manager_unittest.cc", 83 "translate_manager_unittest.cc",
84 "translate_prefs_unittest.cc", 84 "translate_prefs_unittest.cc",
85 "translate_script_unittest.cc", 85 "translate_script_unittest.cc",
86 "translate_ui_delegate_unittest.cc",
86 ] 87 ]
87 deps = [ 88 deps = [
88 ":browser", 89 ":browser",
89 "//base", 90 "//base",
91 "//components/infobars/core",
90 "//components/pref_registry:test_support", 92 "//components/pref_registry:test_support",
91 "//components/prefs", 93 "//components/prefs",
92 "//components/translate/core/common", 94 "//components/translate/core/common",
93 "//net:test_support", 95 "//net:test_support",
94 "//testing/gtest", 96 "//testing/gtest",
95 ] 97 ]
96 if (!use_aura) {
groby-ooo-7-16 2016/05/18 23:01:58 I'm confused why this would need to be tested on n
97 sources += [ "translate_ui_delegate_unittest.cc" ]
98 deps += [ "//components/infobars/core" ]
99 }
100 } 98 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698