Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: ios/web/BUILD.gn

Issue 2644223002: Integration tests for WebStateDelegate::OnAuthRequired callback. (Closed)
Patch Set: Addressed review comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 "public/test/response_providers/error_page_response_provider.h", 415 "public/test/response_providers/error_page_response_provider.h",
416 "public/test/response_providers/error_page_response_provider.mm", 416 "public/test/response_providers/error_page_response_provider.mm",
417 "public/test/response_providers/file_based_response_provider.h", 417 "public/test/response_providers/file_based_response_provider.h",
418 "public/test/response_providers/file_based_response_provider.mm", 418 "public/test/response_providers/file_based_response_provider.mm",
419 "public/test/response_providers/file_based_response_provider_impl.h", 419 "public/test/response_providers/file_based_response_provider_impl.h",
420 "public/test/response_providers/file_based_response_provider_impl.mm", 420 "public/test/response_providers/file_based_response_provider_impl.mm",
421 "public/test/response_providers/html_response_provider.h", 421 "public/test/response_providers/html_response_provider.h",
422 "public/test/response_providers/html_response_provider.mm", 422 "public/test/response_providers/html_response_provider.mm",
423 "public/test/response_providers/html_response_provider_impl.h", 423 "public/test/response_providers/html_response_provider_impl.h",
424 "public/test/response_providers/html_response_provider_impl.mm", 424 "public/test/response_providers/html_response_provider_impl.mm",
425 "public/test/response_providers/http_auth_response_provider.h",
426 "public/test/response_providers/http_auth_response_provider.mm",
425 "public/test/response_providers/response_provider.h", 427 "public/test/response_providers/response_provider.h",
426 "public/test/response_providers/response_provider.mm", 428 "public/test/response_providers/response_provider.mm",
427 "public/test/response_providers/string_response_provider.h", 429 "public/test/response_providers/string_response_provider.h",
428 "public/test/response_providers/string_response_provider.mm", 430 "public/test/response_providers/string_response_provider.mm",
429 "public/test/scoped_testing_web_client.h", 431 "public/test/scoped_testing_web_client.h",
430 "public/test/scoped_testing_web_client.mm", 432 "public/test/scoped_testing_web_client.mm",
431 "public/test/test_redirect_observer.h", 433 "public/test/test_redirect_observer.h",
432 "public/test/test_redirect_observer.mm", 434 "public/test/test_redirect_observer.mm",
433 "public/test/test_web_thread.h", 435 "public/test/test_web_thread.h",
434 "public/test/test_web_thread_bundle.h", 436 "public/test/test_web_thread_bundle.h",
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 "//net:test_support", 576 "//net:test_support",
575 "//services/service_manager/public/cpp", 577 "//services/service_manager/public/cpp",
576 "//testing/gtest", 578 "//testing/gtest",
577 "//ui/base:test_support", 579 "//ui/base:test_support",
578 ] 580 ]
579 sources = [ 581 sources = [
580 "browser_state_web_view_partition_inttest.mm", 582 "browser_state_web_view_partition_inttest.mm",
581 "navigation/window_location_inttest.mm", 583 "navigation/window_location_inttest.mm",
582 "public/test/http_server_inttest.mm", 584 "public/test/http_server_inttest.mm",
583 "test/run_all_unittests.cc", 585 "test/run_all_unittests.cc",
586 "web_state/http_auth_inttest.mm",
584 "webui/web_ui_mojo_inttest.mm", 587 "webui/web_ui_mojo_inttest.mm",
585 ] 588 ]
586 589
587 assert_no_deps = ios_assert_no_deps 590 assert_no_deps = ios_assert_no_deps
588 } 591 }
589 592
590 js_compile_bundle("web_ui_bundle") { 593 js_compile_bundle("web_ui_bundle") {
591 visibility = [ ":js_resources" ] 594 visibility = [ ":js_resources" ]
592 closure_entry_point = "__crWeb.webUIBundle" 595 closure_entry_point = "__crWeb.webUIBundle"
593 596
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 } 633 }
631 634
632 grit("resources") { 635 grit("resources") {
633 source = "ios_web_resources.grd" 636 source = "ios_web_resources.grd"
634 use_qualified_include = true 637 use_qualified_include = true
635 outputs = [ 638 outputs = [
636 "grit/ios_web_resources.h", 639 "grit/ios_web_resources.h",
637 "ios_web_resources.pak", 640 "ios_web_resources.pak",
638 ] 641 ]
639 } 642 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/web/http_auth_egtest.mm ('k') | ios/web/public/test/fakes/test_web_state_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698