| 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("//chrome/common/features.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 import("//chrome/test/base/js2gtest.gni") | 8 import("//chrome/test/base/js2gtest.gni") |
| 8 import("run_jsbundler.gni") | 9 import("run_jsbundler.gni") |
| 9 | 10 |
| 10 assert(is_chromeos) | 11 assert(is_chromeos) |
| 11 | 12 |
| 12 declare_args() { | 13 declare_args() { |
| 13 # Whether to compress the main Chromevox javascript files or load the | 14 # Whether to compress the main Chromevox javascript files or load the |
| 14 # modules individually from source files. | 15 # modules individually from source files. |
| 15 chromevox_compress_js = !is_debug | 16 chromevox_compress_js = !is_debug |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ] | 681 ] |
| 681 gen_include_files = [ | 682 gen_include_files = [ |
| 682 "testing/assert_additions.js", | 683 "testing/assert_additions.js", |
| 683 "testing/callback_helper.js", | 684 "testing/callback_helper.js", |
| 684 "testing/chromevox_e2e_test_base.js", | 685 "testing/chromevox_e2e_test_base.js", |
| 685 "testing/chromevox_next_e2e_test_base.js", | 686 "testing/chromevox_next_e2e_test_base.js", |
| 686 "testing/mock_feedback.js", | 687 "testing/mock_feedback.js", |
| 687 ] | 688 ] |
| 688 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 689 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 689 } | 690 } |
| OLD | NEW |