| 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 "web_state/web_state_delegate_bridge_unittest.mm", | 653 "web_state/web_state_delegate_bridge_unittest.mm", |
| 654 "web_state/web_state_impl_unittest.mm", | 654 "web_state/web_state_impl_unittest.mm", |
| 655 "web_state/web_state_observer_bridge_unittest.mm", | 655 "web_state/web_state_observer_bridge_unittest.mm", |
| 656 "web_state/web_state_unittest.mm", | 656 "web_state/web_state_unittest.mm", |
| 657 "web_state/web_view_internal_creation_util_unittest.mm", | 657 "web_state/web_view_internal_creation_util_unittest.mm", |
| 658 "web_state/wk_web_view_security_util_unittest.mm", | 658 "web_state/wk_web_view_security_util_unittest.mm", |
| 659 ] | 659 ] |
| 660 } | 660 } |
| 661 | 661 |
| 662 source_set("ios_web_web_state_js_unittests") { | 662 source_set("ios_web_web_state_js_unittests") { |
| 663 configs += [ "//build/config/compiler:enable_arc" ] |
| 663 testonly = true | 664 testonly = true |
| 664 deps = [ | 665 deps = [ |
| 665 ":core", | 666 ":core", |
| 666 ":user_agent", | 667 ":user_agent", |
| 667 ":web", | 668 ":web", |
| 668 "//base", | 669 "//base", |
| 669 "//base/test:test_support", | 670 "//base/test:test_support", |
| 670 "//components/payments/core", | 671 "//components/payments/core", |
| 671 "//components/url_formatter", | 672 "//components/url_formatter", |
| 672 "//ios/net", | 673 "//ios/net", |
| (...skipping 183 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 |