| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 "net/cert_policy_unittest.cc", | 574 "net/cert_policy_unittest.cc", |
| 575 "net/crw_cert_verification_controller_unittest.mm", | 575 "net/crw_cert_verification_controller_unittest.mm", |
| 576 "net/crw_ssl_status_updater_unittest.mm", | 576 "net/crw_ssl_status_updater_unittest.mm", |
| 577 "net/request_group_util_unittest.mm", | 577 "net/request_group_util_unittest.mm", |
| 578 "net/request_tracker_impl_unittest.mm", | 578 "net/request_tracker_impl_unittest.mm", |
| 579 "net/web_http_protocol_handler_delegate_unittest.mm", | 579 "net/web_http_protocol_handler_delegate_unittest.mm", |
| 580 ] | 580 ] |
| 581 } | 581 } |
| 582 | 582 |
| 583 source_set("ios_web_public_unittests") { | 583 source_set("ios_web_public_unittests") { |
| 584 configs += [ "//build/config/compiler:enable_arc" ] |
| 584 testonly = true | 585 testonly = true |
| 585 deps = [ | 586 deps = [ |
| 586 ":core", | 587 ":core", |
| 587 ":user_agent", | 588 ":user_agent", |
| 588 ":web", | 589 ":web", |
| 589 "//base", | 590 "//base", |
| 590 "//base/test:test_support", | 591 "//base/test:test_support", |
| 591 "//components/payments/core", | 592 "//components/payments/core", |
| 592 "//components/url_formatter", | 593 "//components/url_formatter", |
| 593 "//ios/net", | 594 "//ios/net", |
| (...skipping 262 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 |