| 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("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 group("all_tests") { | 10 group("all_tests") { |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "public/user_agent_unittest.mm", | 601 "public/user_agent_unittest.mm", |
| 602 "public/web_state/page_viewport_state_unittest.mm", | 602 "public/web_state/page_viewport_state_unittest.mm", |
| 603 "test/web_test_unittest.mm", | 603 "test/web_test_unittest.mm", |
| 604 "url_scheme_util_unittest.mm", | 604 "url_scheme_util_unittest.mm", |
| 605 "url_util_unittest.cc", | 605 "url_util_unittest.cc", |
| 606 "web_state/context_menu_params_utils_unittest.mm", | 606 "web_state/context_menu_params_utils_unittest.mm", |
| 607 "web_state/crw_pass_kit_downloader_unittest.mm", | 607 "web_state/crw_pass_kit_downloader_unittest.mm", |
| 608 "web_state/error_translation_util_unittest.mm", | 608 "web_state/error_translation_util_unittest.mm", |
| 609 "web_state/js/common_js_unittest.mm", | 609 "web_state/js/common_js_unittest.mm", |
| 610 "web_state/js/context_menu_js_unittest.mm", | 610 "web_state/js/context_menu_js_unittest.mm", |
| 611 "web_state/js/core_js_unittest.mm", | |
| 612 "web_state/js/credential_util_unittest.mm", | 611 "web_state/js/credential_util_unittest.mm", |
| 613 "web_state/js/crw_js_injection_manager_unittest.mm", | 612 "web_state/js/crw_js_injection_manager_unittest.mm", |
| 614 "web_state/js/crw_js_post_request_loader_unittest.mm", | 613 "web_state/js/crw_js_post_request_loader_unittest.mm", |
| 615 "web_state/js/crw_js_window_id_manager_unittest.mm", | 614 "web_state/js/crw_js_window_id_manager_unittest.mm", |
| 616 "web_state/js/page_script_util_unittest.mm", | 615 "web_state/js/page_script_util_unittest.mm", |
| 617 "web_state/navigation_context_impl_unittest.mm", | 616 "web_state/navigation_context_impl_unittest.mm", |
| 618 "web_state/page_display_state_unittest.mm", | 617 "web_state/page_display_state_unittest.mm", |
| 619 "web_state/ui/crw_web_controller_container_view_unittest.mm", | 618 "web_state/ui/crw_web_controller_container_view_unittest.mm", |
| 620 "web_state/ui/crw_web_controller_observer_unittest.mm", | 619 "web_state/ui/crw_web_controller_observer_unittest.mm", |
| 621 "web_state/ui/crw_web_controller_unittest.mm", | 620 "web_state/ui/crw_web_controller_unittest.mm", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 "ios_web_resources.pak", | 724 "ios_web_resources.pak", |
| 726 ] | 725 ] |
| 727 grit_flags = [ | 726 grit_flags = [ |
| 728 "-E", | 727 "-E", |
| 729 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 728 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 730 ] | 729 ] |
| 731 deps = [ | 730 deps = [ |
| 732 "//mojo/public/js:bindings", | 731 "//mojo/public/js:bindings", |
| 733 ] | 732 ] |
| 734 } | 733 } |
| OLD | NEW |