| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_functions | 143 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_functions |
| 144 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_symbols | 144 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_symbols |
| 145 sources += | 145 sources += |
| 146 chromevox_assets_gypi_values.chromevox_assets_cvox2_background_earcons | 146 chromevox_assets_gypi_values.chromevox_assets_cvox2_background_earcons |
| 147 sources += [ | 147 sources += [ |
| 148 "chromevox/background/background.html", | 148 "chromevox/background/background.html", |
| 149 "chromevox/background/kbexplorer.html", | 149 "chromevox/background/kbexplorer.html", |
| 150 "chromevox/background/options.html", | 150 "chromevox/background/options.html", |
| 151 "chromevox/injected/api.js", | 151 "chromevox/injected/api.js", |
| 152 "cvox2/background/background.html", | 152 "cvox2/background/background.html", |
| 153 "cvox2/background/next_update.html", | |
| 154 "cvox2/background/panel.css", | 153 "cvox2/background/panel.css", |
| 155 "cvox2/background/panel.html", | 154 "cvox2/background/panel.html", |
| 156 ] | 155 ] |
| 157 if (chromevox_compress_js) { | 156 if (chromevox_compress_js) { |
| 158 sources += [ "chromevox/injected/api_util.js" ] | 157 sources += [ "chromevox/injected/api_util.js" ] |
| 159 } else { | 158 } else { |
| 160 sources += chromevox_modules | 159 sources += chromevox_modules |
| 161 sources += [ | 160 sources += [ |
| 162 "closure/closure_preinit.js", | 161 "closure/closure_preinit.js", |
| 163 chromevox_vars_gypi_values.chromevox_content_script_loader_file, | 162 chromevox_vars_gypi_values.chromevox_content_script_loader_file, |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 397 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 399 } | 398 } |
| 400 | 399 |
| 401 js2gtest("chromevox_extjs_tests") { | 400 js2gtest("chromevox_extjs_tests") { |
| 402 test_type = "extension" | 401 test_type = "extension" |
| 403 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 402 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
| 404 gen_include_files = | 403 gen_include_files = |
| 405 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 404 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
| 406 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 405 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 407 } | 406 } |
| OLD | NEW |