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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 "{{source_file_part}}", | 499 "{{source_file_part}}", |
500 ] | 500 ] |
501 } | 501 } |
502 | 502 |
503 test("ios_web_unittests") { | 503 test("ios_web_unittests") { |
504 deps = [ | 504 deps = [ |
505 ":core", | 505 ":core", |
506 ":ios_web_unittests_bundle_data", | 506 ":ios_web_unittests_bundle_data", |
507 ":run_all_unittests", | 507 ":run_all_unittests", |
508 ":test_support", | 508 ":test_support", |
| 509 ":user_agent", |
509 ":web", | 510 ":web", |
510 "//base", | 511 "//base", |
511 "//base/test:test_support", | 512 "//base/test:test_support", |
512 "//components/url_formatter", | 513 "//components/url_formatter", |
513 "//ios/net", | 514 "//ios/net", |
514 "//ios/testing:ocmock_support", | 515 "//ios/testing:ocmock_support", |
515 "//ios/web/test:mojo_bindings", | 516 "//ios/web/test:mojo_bindings", |
516 "//net:test_support", | 517 "//net:test_support", |
517 "//services/service_manager/public/cpp", | 518 "//services/service_manager/public/cpp", |
518 "//testing/gmock", | 519 "//testing/gmock", |
(...skipping 21 matching lines...) Expand all Loading... |
540 "net/crw_ssl_status_updater_unittest.mm", | 541 "net/crw_ssl_status_updater_unittest.mm", |
541 "net/request_group_util_unittest.mm", | 542 "net/request_group_util_unittest.mm", |
542 "net/request_tracker_impl_unittest.mm", | 543 "net/request_tracker_impl_unittest.mm", |
543 "net/web_http_protocol_handler_delegate_unittest.mm", | 544 "net/web_http_protocol_handler_delegate_unittest.mm", |
544 "payments/payment_request_unittest.cc", | 545 "payments/payment_request_unittest.cc", |
545 "public/origin_util_unittest.mm", | 546 "public/origin_util_unittest.mm", |
546 "public/referrer_util_unittest.cc", | 547 "public/referrer_util_unittest.cc", |
547 "public/serializable_user_data_manager_unittest.mm", | 548 "public/serializable_user_data_manager_unittest.mm", |
548 "public/test/crw_mock_web_state_delegate.h", | 549 "public/test/crw_mock_web_state_delegate.h", |
549 "public/test/crw_mock_web_state_delegate.mm", | 550 "public/test/crw_mock_web_state_delegate.mm", |
| 551 "public/user_agent_unittest.mm", |
550 "public/web_state/page_viewport_state_unittest.mm", | 552 "public/web_state/page_viewport_state_unittest.mm", |
551 "test/web_test_unittest.mm", | 553 "test/web_test_unittest.mm", |
552 "url_scheme_util_unittest.mm", | 554 "url_scheme_util_unittest.mm", |
553 "url_util_unittest.cc", | 555 "url_util_unittest.cc", |
554 "web_state/context_menu_params_utils_unittest.mm", | 556 "web_state/context_menu_params_utils_unittest.mm", |
555 "web_state/crw_pass_kit_downloader_unittest.mm", | 557 "web_state/crw_pass_kit_downloader_unittest.mm", |
556 "web_state/crw_web_view_scroll_view_proxy_unittest.mm", | 558 "web_state/crw_web_view_scroll_view_proxy_unittest.mm", |
557 "web_state/error_translation_util_unittest.mm", | 559 "web_state/error_translation_util_unittest.mm", |
558 "web_state/js/common_js_unittest.mm", | 560 "web_state/js/common_js_unittest.mm", |
559 "web_state/js/core_js_unittest.mm", | 561 "web_state/js/core_js_unittest.mm", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 "ios_web_resources.pak", | 667 "ios_web_resources.pak", |
666 ] | 668 ] |
667 grit_flags = [ | 669 grit_flags = [ |
668 "-E", | 670 "-E", |
669 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 671 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
670 ] | 672 ] |
671 deps = [ | 673 deps = [ |
672 "//mojo/public/js:bindings", | 674 "//mojo/public/js:bindings", |
673 ] | 675 ] |
674 } | 676 } |
OLD | NEW |