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

Side by Side Diff: chrome/test/data/webui/BUILD.gn

Issue 2893003003: Print Preview: Merge NativeLayerStubs for tests (Closed)
Patch Set: Remove extra variable Created 3 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
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("//chrome/common/features.gni") 5 import("//chrome/common/features.gni")
6 import("//chrome/test/base/js2gtest.gni") 6 import("//chrome/test/base/js2gtest.gni")
7 7
8 js2gtest("interactive_ui_tests_js_webui") { 8 js2gtest("interactive_ui_tests_js_webui") {
9 test_type = "webui" 9 test_type = "webui"
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 "net_internals/hsts_view.js", 92 "net_internals/hsts_view.js",
93 "net_internals/log_util.js", 93 "net_internals/log_util.js",
94 "net_internals/log_view_painter.js", 94 "net_internals/log_view_painter.js",
95 "net_internals/main.js", 95 "net_internals/main.js",
96 "net_internals/net_internals_test.js", 96 "net_internals/net_internals_test.js",
97 "net_internals/prerender_view.js", 97 "net_internals/prerender_view.js",
98 "net_internals/sdch_view.js", 98 "net_internals/sdch_view.js",
99 "net_internals/timeline_view.js", 99 "net_internals/timeline_view.js",
100 "ntp4.js", 100 "ntp4.js",
101 "polymer_browser_test_base.js", 101 "polymer_browser_test_base.js",
102 "print_preview.js",
103 "print_preview_destination_search_test.js",
104 "sandboxstatus_browsertest.js", 102 "sandboxstatus_browsertest.js",
105 "settings/advanced_page_browsertest.js", 103 "settings/advanced_page_browsertest.js",
106 "settings/animation_browsertest.js", 104 "settings/animation_browsertest.js",
107 "settings/basic_page_browsertest.js", 105 "settings/basic_page_browsertest.js",
108 "settings/cr_settings_browsertest.js", 106 "settings/cr_settings_browsertest.js",
109 "settings/help_page_browsertest.js", 107 "settings/help_page_browsertest.js",
110 "settings/on_startup_browsertest.js", 108 "settings/on_startup_browsertest.js",
111 "settings/passwords_and_autofill_fake_data.js", 109 "settings/passwords_and_autofill_fake_data.js",
112 "settings/passwords_and_forms_browsertest.js", 110 "settings/passwords_and_forms_browsertest.js",
113 "settings/settings_autofill_section_browsertest.js", 111 "settings/settings_autofill_section_browsertest.js",
(...skipping 28 matching lines...) Expand all
142 # TODO(rouslan): This test depends on hunspell and we cannot run it 140 # TODO(rouslan): This test depends on hunspell and we cannot run it
143 # on Mac, which does not use hunspell by default. 141 # on Mac, which does not use hunspell by default.
144 "../../../browser/ui/webui/options/language_options_dictionary_download_br owsertest.js", 142 "../../../browser/ui/webui/options/language_options_dictionary_download_br owsertest.js",
145 "../../../browser/ui/webui/options/multilanguage_options_webui_browsertest .js", 143 "../../../browser/ui/webui/options/multilanguage_options_webui_browsertest .js",
146 ] 144 ]
147 } 145 }
148 if (!enable_app_list) { 146 if (!enable_app_list) {
149 sources -= 147 sources -=
150 [ "../../../browser/ui/webui/app_list/start_page_browsertest.js" ] 148 [ "../../../browser/ui/webui/app_list/start_page_browsertest.js" ]
151 } 149 }
152 if (!enable_print_preview) { 150 if (enable_print_preview) {
153 sources -= [ "print_preview.js" ] 151 sources += [
152 "print_preview/print_preview.js",
153 "print_preview/print_preview_destination_search_test.js",
154 ]
154 } 155 }
155 deps = [ 156 deps = [
156 "//chrome/browser/ui", 157 "//chrome/browser/ui",
157 "//skia", 158 "//skia",
158 ] 159 ]
159 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 160 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
160 } 161 }
161 162
162 js2gtest("unit_tests_js") { 163 js2gtest("unit_tests_js") {
163 test_type = "unit" 164 test_type = "unit"
(...skipping 17 matching lines...) Expand all
181 "../../../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtes tjs", 182 "../../../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtes tjs",
182 "../../../browser/resources/chromeos/select_to_speak/select_to_speak_unitt est.gtestjs", 183 "../../../browser/resources/chromeos/select_to_speak/select_to_speak_unitt est.gtestjs",
183 ] 184 ]
184 extra_js_files += [ 185 extra_js_files += [
185 "../../../browser/resources/chromeos/braille_ime/braille_ime.js", 186 "../../../browser/resources/chromeos/braille_ime/braille_ime.js",
186 "../../../browser/resources/chromeos/select_to_speak/select_to_speak.js", 187 "../../../browser/resources/chromeos/select_to_speak/select_to_speak.js",
187 "../../../browser/resources/chromeos/select_to_speak/test_support.js", 188 "../../../browser/resources/chromeos/select_to_speak/test_support.js",
188 ] 189 ]
189 } 190 }
190 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698