| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "//chrome:packed_resources", | 325 "//chrome:packed_resources", |
| 326 "//chrome:resources", | 326 "//chrome:resources", |
| 327 "//chrome:strings", | 327 "//chrome:strings", |
| 328 "//chrome/browser", | 328 "//chrome/browser", |
| 329 "//chrome/renderer", | 329 "//chrome/renderer", |
| 330 "//chrome/test:test_support", | 330 "//chrome/test:test_support", |
| 331 "//chrome/test:test_support_ui", | 331 "//chrome/test:test_support_ui", |
| 332 "//content/test:browsertest_base", | 332 "//content/test:browsertest_base", |
| 333 "//testing/gmock", | 333 "//testing/gmock", |
| 334 "//testing/gtest", | 334 "//testing/gtest", |
| 335 # Because the browser_tests use translate, they need CLD data. | |
| 336 "//third_party/cld_2:cld2_platform_impl" | |
| 337 ] | 335 ] |
| 338 } | 336 } |
| 339 | 337 |
| 340 action("chromevox_test_messages_js") { | 338 action("chromevox_test_messages_js") { |
| 341 script = "tools/generate_test_messages.py" | 339 script = "tools/generate_test_messages.py" |
| 342 sources = [ | 340 sources = [ |
| 343 "$chromevox_out_dir/_locales/en/messages.json", | 341 "$chromevox_out_dir/_locales/en/messages.json", |
| 344 ] | 342 ] |
| 345 output_file = "$root_out_dir/test_data/chrome/browser/resources/chromeos/chrom
evox/host/testing/test_messages.js" | 343 output_file = "$root_out_dir/test_data/chrome/browser/resources/chromeos/chrom
evox/host/testing/test_messages.js" |
| 346 outputs = [ | 344 outputs = [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 388 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 391 } | 389 } |
| 392 | 390 |
| 393 js2gtest("chromevox_extjs_tests") { | 391 js2gtest("chromevox_extjs_tests") { |
| 394 test_type = "extension" | 392 test_type = "extension" |
| 395 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 393 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
| 396 gen_include_files = | 394 gen_include_files = |
| 397 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 395 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
| 398 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 396 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 399 } | 397 } |
| OLD | NEW |