| 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 "web_state/js/common_js_unittest.mm", | 689 "web_state/js/common_js_unittest.mm", |
| 690 "web_state/js/context_menu_js_unittest.mm", | 690 "web_state/js/context_menu_js_unittest.mm", |
| 691 "web_state/js/crw_js_injection_manager_unittest.mm", | 691 "web_state/js/crw_js_injection_manager_unittest.mm", |
| 692 "web_state/js/crw_js_post_request_loader_unittest.mm", | 692 "web_state/js/crw_js_post_request_loader_unittest.mm", |
| 693 "web_state/js/crw_js_window_id_manager_unittest.mm", | 693 "web_state/js/crw_js_window_id_manager_unittest.mm", |
| 694 "web_state/js/page_script_util_unittest.mm", | 694 "web_state/js/page_script_util_unittest.mm", |
| 695 ] | 695 ] |
| 696 } | 696 } |
| 697 | 697 |
| 698 source_set("ios_web_web_state_ui_unittests") { | 698 source_set("ios_web_web_state_ui_unittests") { |
| 699 configs += [ "//build/config/compiler:enable_arc" ] |
| 699 testonly = true | 700 testonly = true |
| 700 deps = [ | 701 deps = [ |
| 701 ":core", | 702 ":core", |
| 702 ":user_agent", | 703 ":user_agent", |
| 703 ":web", | 704 ":web", |
| 704 "//base", | 705 "//base", |
| 705 "//base/test:test_support", | 706 "//base/test:test_support", |
| 706 "//components/payments/core", | 707 "//components/payments/core", |
| 707 "//components/url_formatter", | 708 "//components/url_formatter", |
| 708 "//ios/net", | 709 "//ios/net", |
| (...skipping 147 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 |