| 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 "web_state/ui/crw_web_view_scroll_view_proxy_unittest.mm", | 728 "web_state/ui/crw_web_view_scroll_view_proxy_unittest.mm", |
| 729 "web_state/ui/crw_wk_navigation_states_unittest.mm", | 729 "web_state/ui/crw_wk_navigation_states_unittest.mm", |
| 730 "web_state/ui/crw_wk_script_message_router_unittest.mm", | 730 "web_state/ui/crw_wk_script_message_router_unittest.mm", |
| 731 "web_state/ui/web_view_js_utils_unittest.mm", | 731 "web_state/ui/web_view_js_utils_unittest.mm", |
| 732 "web_state/ui/wk_back_forward_list_item_holder_unittest.mm", | 732 "web_state/ui/wk_back_forward_list_item_holder_unittest.mm", |
| 733 "web_state/ui/wk_web_view_configuration_provider_unittest.mm", | 733 "web_state/ui/wk_web_view_configuration_provider_unittest.mm", |
| 734 ] | 734 ] |
| 735 } | 735 } |
| 736 | 736 |
| 737 source_set("ios_web_webui_unittests") { | 737 source_set("ios_web_webui_unittests") { |
| 738 configs += [ "//build/config/compiler:enable_arc" ] |
| 738 testonly = true | 739 testonly = true |
| 739 deps = [ | 740 deps = [ |
| 740 ":core", | 741 ":core", |
| 741 ":user_agent", | 742 ":user_agent", |
| 742 ":web", | 743 ":web", |
| 743 "//base", | 744 "//base", |
| 744 "//base/test:test_support", | 745 "//base/test:test_support", |
| 745 "//components/payments/core", | 746 "//components/payments/core", |
| 746 "//components/url_formatter", | 747 "//components/url_formatter", |
| 747 "//ios/net", | 748 "//ios/net", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 "ios_web_resources.pak", | 857 "ios_web_resources.pak", |
| 857 ] | 858 ] |
| 858 grit_flags = [ | 859 grit_flags = [ |
| 859 "-E", | 860 "-E", |
| 860 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 861 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 861 ] | 862 ] |
| 862 deps = [ | 863 deps = [ |
| 863 "//mojo/public/js:bindings", | 864 "//mojo/public/js:bindings", |
| 864 ] | 865 ] |
| 865 } | 866 } |
| OLD | NEW |