| OLD | NEW |
| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ] | 144 ] |
| 145 } | 145 } |
| 146 if (!enable_app_list) { | 146 if (!enable_app_list) { |
| 147 sources -= | 147 sources -= |
| 148 [ "../../../browser/ui/webui/app_list/start_page_browsertest.js" ] | 148 [ "../../../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 149 } | 149 } |
| 150 if (enable_print_preview) { | 150 if (enable_print_preview) { |
| 151 sources += [ | 151 sources += [ |
| 152 "print_preview/print_preview.js", | 152 "print_preview/print_preview.js", |
| 153 "print_preview/print_preview_destination_search_test.js", | 153 "print_preview/print_preview_destination_search_test.js", |
| 154 "print_preview/print_preview_ui_browsertest.js", |
| 154 ] | 155 ] |
| 155 } | 156 } |
| 156 deps = [ | 157 deps = [ |
| 157 "//chrome/browser/ui", | 158 "//chrome/browser/ui", |
| 158 "//skia", | 159 "//skia", |
| 159 ] | 160 ] |
| 160 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 161 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 161 } | 162 } |
| 162 | 163 |
| 163 js2gtest("unit_tests_js") { | 164 js2gtest("unit_tests_js") { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 182 "../../../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtes
tjs", | 183 "../../../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtes
tjs", |
| 183 "../../../browser/resources/chromeos/select_to_speak/select_to_speak_unitt
est.gtestjs", | 184 "../../../browser/resources/chromeos/select_to_speak/select_to_speak_unitt
est.gtestjs", |
| 184 ] | 185 ] |
| 185 extra_js_files += [ | 186 extra_js_files += [ |
| 186 "../../../browser/resources/chromeos/braille_ime/braille_ime.js", | 187 "../../../browser/resources/chromeos/braille_ime/braille_ime.js", |
| 187 "../../../browser/resources/chromeos/select_to_speak/select_to_speak.js", | 188 "../../../browser/resources/chromeos/select_to_speak/select_to_speak.js", |
| 188 "../../../browser/resources/chromeos/select_to_speak/test_support.js", | 189 "../../../browser/resources/chromeos/select_to_speak/test_support.js", |
| 189 ] | 190 ] |
| 190 } | 191 } |
| 191 } | 192 } |
| OLD | NEW |