Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/BUILD.gn

Issue 2817313002: Support braille dot or chorded typing conversions to standard keyboard keys (Closed)
Patch Set: Address feedback. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/braille/braille_key_event_rewriter.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//chrome/common/features.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//chrome/test/base/js2gtest.gni") 8 import("//chrome/test/base/js2gtest.gni")
9 import("run_jsbundler.gni") 9 import("run_jsbundler.gni")
10 10
11 assert(is_chromeos) 11 assert(is_chromeos)
12 12
13 declare_args() { 13 declare_args() {
14 # Whether to compress the main Chromevox javascript files or load the 14 # Whether to compress the main Chromevox javascript files or load the
15 # modules individually from source files. 15 # modules individually from source files.
16 chromevox_compress_js = !is_debug 16 chromevox_compress_js = !is_debug
17 } 17 }
18 18
19 closure_library_dir = 19 closure_library_dir =
20 "//chrome/third_party/chromevox/third_party/closure-library/closure/goog" 20 "//chrome/third_party/chromevox/third_party/closure-library/closure/goog"
21 21
22 # List of all modules that are included in one or more of the production 22 # List of all modules that are included in one or more of the production
23 # chromevox scripts. 23 # chromevox scripts.
24 chromevox_modules = [ 24 chromevox_modules = [
25 "braille/braille_display_manager.js", 25 "braille/braille_display_manager.js",
26 "braille/braille_input_handler.js", 26 "braille/braille_input_handler.js",
27 "braille/braille_key_event_rewriter.js",
27 "braille/braille_key_types.js", 28 "braille/braille_key_types.js",
28 "braille/braille_table.js", 29 "braille/braille_table.js",
29 "braille/braille_translator_manager.js", 30 "braille/braille_translator_manager.js",
30 "braille/expanding_braille_translator.js", 31 "braille/expanding_braille_translator.js",
31 "braille/liblouis.js", 32 "braille/liblouis.js",
32 "braille/nav_braille.js", 33 "braille/nav_braille.js",
33 "braille/pan_strategy.js", 34 "braille/pan_strategy.js",
34 "braille/spans.js", 35 "braille/spans.js",
35 "chromevox/background/background.js", 36 "chromevox/background/background.js",
36 "chromevox/background/braille_captions_background.js", 37 "chromevox/background/braille_captions_background.js",
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 ] 684 ]
684 gen_include_files = [ 685 gen_include_files = [
685 "testing/assert_additions.js", 686 "testing/assert_additions.js",
686 "testing/callback_helper.js", 687 "testing/callback_helper.js",
687 "testing/chromevox_e2e_test_base.js", 688 "testing/chromevox_e2e_test_base.js",
688 "testing/chromevox_next_e2e_test_base.js", 689 "testing/chromevox_next_e2e_test_base.js",
689 "testing/mock_feedback.js", 690 "testing/mock_feedback.js",
690 ] 691 ]
691 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 692 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
692 } 693 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/braille/braille_key_event_rewriter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698