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("//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 |
(...skipping 25 matching lines...) Expand all Loading... |
36 "chromevox/background/braille_captions_background.js", | 36 "chromevox/background/braille_captions_background.js", |
37 "chromevox/background/injected_script_loader.js", | 37 "chromevox/background/injected_script_loader.js", |
38 "chromevox/background/kbexplorer.js", | 38 "chromevox/background/kbexplorer.js", |
39 "chromevox/background/keymaps/key_map.js", | 39 "chromevox/background/keymaps/key_map.js", |
40 "chromevox/background/mathmaps/math_map.js", | 40 "chromevox/background/mathmaps/math_map.js", |
41 "chromevox/background/options.js", | 41 "chromevox/background/options.js", |
42 "chromevox/background/prefs.js", | 42 "chromevox/background/prefs.js", |
43 "chromevox/background/tabs_api_handler.js", | 43 "chromevox/background/tabs_api_handler.js", |
44 "chromevox/injected/active_indicator.js", | 44 "chromevox/injected/active_indicator.js", |
45 "chromevox/injected/api_implementation.js", | 45 "chromevox/injected/api_implementation.js", |
46 "chromevox/injected/api_util.js", | |
47 "chromevox/injected/console_tts.js", | 46 "chromevox/injected/console_tts.js", |
48 "chromevox/injected/event_suspender.js", | 47 "chromevox/injected/event_suspender.js", |
49 "chromevox/injected/event_watcher.js", | 48 "chromevox/injected/event_watcher.js", |
50 "chromevox/injected/history.js", | 49 "chromevox/injected/history.js", |
51 "chromevox/injected/init_document.js", | 50 "chromevox/injected/init_document.js", |
52 "chromevox/injected/init_globals.js", | 51 "chromevox/injected/init_globals.js", |
53 "chromevox/injected/initial_speech.js", | 52 "chromevox/injected/initial_speech.js", |
54 "chromevox/injected/keyboard_handler.js", | 53 "chromevox/injected/keyboard_handler.js", |
55 "chromevox/injected/live_regions.js", | 54 "chromevox/injected/live_regions.js", |
56 "chromevox/injected/navigation_history.js", | 55 "chromevox/injected/navigation_history.js", |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 "images/chromevox-16.png", | 341 "images/chromevox-16.png", |
343 "images/chromevox-19.png", | 342 "images/chromevox-19.png", |
344 "images/chromevox-48.png", | 343 "images/chromevox-48.png", |
345 "images/chromevox.svg", | 344 "images/chromevox.svg", |
346 "images/close-19.png", | 345 "images/close-19.png", |
347 "images/close-hover-19.png", | 346 "images/close-hover-19.png", |
348 "images/options-19.png", | 347 "images/options-19.png", |
349 "images/options-hover-19.png", | 348 "images/options-hover-19.png", |
350 "images/triangle-6.png", | 349 "images/triangle-6.png", |
351 ] | 350 ] |
352 if (chromevox_compress_js) { | 351 if (!chromevox_compress_js) { |
353 sources += [ "chromevox/injected/api_util.js" ] | |
354 } else { | |
355 sources += chromevox_modules | 352 sources += chromevox_modules |
356 sources += [ | 353 sources += [ |
357 "closure/closure_preinit.js", | 354 "closure/closure_preinit.js", |
358 chromevox_background_script_loader_file, | 355 chromevox_background_script_loader_file, |
359 chromevox_content_script_loader_file, | 356 chromevox_content_script_loader_file, |
360 chromevox_kbexplorer_loader_file, | 357 chromevox_kbexplorer_loader_file, |
361 chromevox_min_content_script_loader_file, | 358 chromevox_min_content_script_loader_file, |
362 chromevox_options_script_loader_file, | 359 chromevox_options_script_loader_file, |
363 chromevox_panel_script_loader_file, | 360 chromevox_panel_script_loader_file, |
364 ] | 361 ] |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 ] | 681 ] |
685 gen_include_files = [ | 682 gen_include_files = [ |
686 "testing/assert_additions.js", | 683 "testing/assert_additions.js", |
687 "testing/callback_helper.js", | 684 "testing/callback_helper.js", |
688 "testing/chromevox_e2e_test_base.js", | 685 "testing/chromevox_e2e_test_base.js", |
689 "testing/chromevox_next_e2e_test_base.js", | 686 "testing/chromevox_next_e2e_test_base.js", |
690 "testing/mock_feedback.js", | 687 "testing/mock_feedback.js", |
691 ] | 688 ] |
692 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 689 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
693 } | 690 } |
OLD | NEW |