| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "//base", | 329 "//base", |
| 330 "//base:i18n", | 330 "//base:i18n", |
| 331 "//base/test:test_support", | 331 "//base/test:test_support", |
| 332 "//chrome:browser_tests_pak", | 332 "//chrome:browser_tests_pak", |
| 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:test_support", | 340 "//chrome/test:test_support", |
| 340 "//chrome/test:test_support_ui", | 341 "//chrome/test:test_support_ui", |
| 341 "//content/test:test_support", | 342 "//content/test:test_support", |
| 342 "//testing/gmock", | 343 "//testing/gmock", |
| 343 "//testing/gtest", | 344 "//testing/gtest", |
| 344 ] | 345 ] |
| 345 } | 346 } |
| 346 | 347 |
| 347 action("chromevox_test_messages_js") { | 348 action("chromevox_test_messages_js") { |
| 348 script = "tools/generate_test_messages.py" | 349 script = "tools/generate_test_messages.py" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 398 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 398 } | 399 } |
| 399 | 400 |
| 400 js2gtest("chromevox_extjs_tests") { | 401 js2gtest("chromevox_extjs_tests") { |
| 401 test_type = "extension" | 402 test_type = "extension" |
| 402 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 403 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
| 403 gen_include_files = | 404 gen_include_files = |
| 404 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 405 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
| 405 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 406 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 406 } | 407 } |
| OLD | NEW |