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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//chrome/test/base/js2gtest.gni") | 7 import("//chrome/test/base/js2gtest.gni") |
8 import("chromevox.gni") | 8 import("chromevox.gni") |
9 | 9 |
10 assert(is_chromeos) | 10 assert(is_chromeos) |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 "//chrome:packed_extra_resources", | 333 "//chrome:packed_extra_resources", |
334 "//chrome:packed_resources", | 334 "//chrome:packed_resources", |
335 "//chrome:resources", | 335 "//chrome:resources", |
336 "//chrome:strings", | 336 "//chrome:strings", |
337 "//chrome/browser", | 337 "//chrome/browser", |
338 "//chrome/renderer", | 338 "//chrome/renderer", |
339 "//chrome/test:browser_tests_runner", | 339 "//chrome/test:browser_tests_runner", |
340 "//chrome/test:test_support", | 340 "//chrome/test:test_support", |
341 "//chrome/test:test_support_ui", | 341 "//chrome/test:test_support_ui", |
342 "//content/test:test_support", | 342 "//content/test:test_support", |
| 343 "//services/shell/background:lib", |
| 344 "//services/shell/background/tests:test_support", |
343 "//testing/gmock", | 345 "//testing/gmock", |
344 "//testing/gtest", | 346 "//testing/gtest", |
345 ] | 347 ] |
346 } | 348 } |
347 | 349 |
348 action("chromevox_test_messages_js") { | 350 action("chromevox_test_messages_js") { |
349 script = "tools/generate_test_messages.py" | 351 script = "tools/generate_test_messages.py" |
350 sources = [ | 352 sources = [ |
351 "$chromevox_out_dir/_locales/en/messages.json", | 353 "$chromevox_out_dir/_locales/en/messages.json", |
352 ] | 354 ] |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 400 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
399 } | 401 } |
400 | 402 |
401 js2gtest("chromevox_extjs_tests") { | 403 js2gtest("chromevox_extjs_tests") { |
402 test_type = "extension" | 404 test_type = "extension" |
403 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 405 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
404 gen_include_files = | 406 gen_include_files = |
405 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 407 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
406 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 408 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
407 } | 409 } |
OLD | NEW |