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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 run_jsbundler("chromevox_copied_files") { | 134 run_jsbundler("chromevox_copied_files") { |
135 mode = "copy" | 135 mode = "copy" |
136 dest_dir = chromevox_out_dir | 136 dest_dir = chromevox_out_dir |
137 sources = chromevox_assets_gypi_values.chromevox_assets_chromevox | 137 sources = chromevox_assets_gypi_values.chromevox_assets_chromevox |
138 sources += | 138 sources += |
139 chromevox_assets_gypi_values.chromevox_assets_chromevox_background_earcons | 139 chromevox_assets_gypi_values.chromevox_assets_chromevox_background_earcons |
140 sources += | 140 sources += |
141 chromevox_assets_gypi_values.chromevox_assets_chromevox_background_keymaps | 141 chromevox_assets_gypi_values.chromevox_assets_chromevox_background_keymaps |
142 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_functions | 142 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_functions |
143 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_symbols | 143 sources += chromevox_assets_gypi_values.chromevox_assets_chromevox_background_
mathmaps_symbols |
| 144 sources += |
| 145 chromevox_assets_gypi_values.chromevox_assets_cvox2_background_earcons |
144 sources += [ | 146 sources += [ |
145 "chromevox/background/background.html", | 147 "chromevox/background/background.html", |
146 "chromevox/background/kbexplorer.html", | 148 "chromevox/background/kbexplorer.html", |
147 "chromevox/background/options.html", | 149 "chromevox/background/options.html", |
148 "chromevox/injected/api.js", | 150 "chromevox/injected/api.js", |
149 "cvox2/background/background.html", | 151 "cvox2/background/background.html", |
150 ] | 152 ] |
151 if (chromevox_compress_js) { | 153 if (chromevox_compress_js) { |
152 sources += [ "chromevox/injected/api_util.js" ] | 154 sources += [ "chromevox/injected/api_util.js" ] |
153 } else { | 155 } else { |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 390 } |
389 | 391 |
390 js2gtest("chromevox_extjs_tests") { | 392 js2gtest("chromevox_extjs_tests") { |
391 test_type = "extension" | 393 test_type = "extension" |
392 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources | 394 sources = chromevox_tests_gypi_values.chromevox_tests_extjs_sources |
393 sources -= [ "braille/liblouis_test.extjs" ] # TODO(GYP) | 395 sources -= [ "braille/liblouis_test.extjs" ] # TODO(GYP) |
394 gen_include_files = | 396 gen_include_files = |
395 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources | 397 chromevox_tests_gypi_values.chromevox_tests_ext_gen_include_sources |
396 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 398 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
397 } | 399 } |
OLD | NEW |