| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 [ "chromevox_tests.gypi" ]) | 311 [ "chromevox_tests.gypi" ]) |
| 312 | 312 |
| 313 test("chromevox_tests") { | 313 test("chromevox_tests") { |
| 314 sources = chromevox_tests_gypi_values.chromevox_tests_sources | 314 sources = chromevox_tests_gypi_values.chromevox_tests_sources |
| 315 | 315 |
| 316 deps = [ | 316 deps = [ |
| 317 ":chromevox_extjs_tests", | 317 ":chromevox_extjs_tests", |
| 318 ":chromevox_unitjs_tests", | 318 ":chromevox_unitjs_tests", |
| 319 "//base", | 319 "//base", |
| 320 "//base:i18n", | 320 "//base:i18n", |
| 321 "//base/allocator", |
| 321 "//base/test:test_support", | 322 "//base/test:test_support", |
| 322 "//chrome:browser_tests_pak", | 323 "//chrome:browser_tests_pak", |
| 323 "//chrome:packed_extra_resources", | 324 "//chrome:packed_extra_resources", |
| 324 "//chrome:packed_resources", | 325 "//chrome:packed_resources", |
| 325 "//chrome:resources", | 326 "//chrome:resources", |
| 326 "//chrome:strings", | 327 "//chrome:strings", |
| 327 "//chrome/browser", | 328 "//chrome/browser", |
| 328 "//chrome/renderer", | 329 "//chrome/renderer", |
| 329 "//chrome/test:test_support", | 330 "//chrome/test:test_support", |
| 330 "//chrome/test:test_support_ui", | 331 "//chrome/test:test_support_ui", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 } | 392 } |
| 392 | 393 |
| 393 js2gtest("chromevox_extjs_tests") { | 394 js2gtest("chromevox_extjs_tests") { |
| 394 test_type = "extension" | 395 test_type = "extension" |
| 395 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 396 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
| 396 sources -= [ "braille/liblouis_test.extjs" ] # TODO(GYP) | 397 sources -= [ "braille/liblouis_test.extjs" ] # TODO(GYP) |
| 397 gen_include_files = | 398 gen_include_files = |
| 398 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 399 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
| 399 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 400 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 400 } | 401 } |
| OLD | NEW |