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

Side by Side Diff: content/test/BUILD.gn

Issue 2787123005: Block data URL navigations with RenderFrameImpl::DecidePolicyForNavigation (Closed)
Patch Set: Attempt another fix Created 3 years, 8 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/test/data/data_url_navigations.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 "../browser/devtools/protocol/devtools_protocol_browsertest.cc", 604 "../browser/devtools/protocol/devtools_protocol_browsertest.cc",
605 "../browser/devtools/site_per_process_devtools_browsertest.cc", 605 "../browser/devtools/site_per_process_devtools_browsertest.cc",
606 "../browser/dom_storage/dom_storage_browsertest.cc", 606 "../browser/dom_storage/dom_storage_browsertest.cc",
607 "../browser/download/download_browsertest.cc", 607 "../browser/download/download_browsertest.cc",
608 "../browser/download/drag_download_file_browsertest.cc", 608 "../browser/download/drag_download_file_browsertest.cc",
609 "../browser/download/mhtml_generation_browsertest.cc", 609 "../browser/download/mhtml_generation_browsertest.cc",
610 "../browser/download/save_package_browsertest.cc", 610 "../browser/download/save_package_browsertest.cc",
611 "../browser/fileapi/file_system_browsertest.cc", 611 "../browser/fileapi/file_system_browsertest.cc",
612 "../browser/fileapi/fileapi_browsertest.cc", 612 "../browser/fileapi/fileapi_browsertest.cc",
613 "../browser/find_request_manager_browsertest.cc", 613 "../browser/find_request_manager_browsertest.cc",
614 "../browser/frame_host/data_url_navigation_browsertest.cc",
614 "../browser/frame_host/form_submission_throttle_browsertest.cc", 615 "../browser/frame_host/form_submission_throttle_browsertest.cc",
615 "../browser/frame_host/frame_tree_browsertest.cc", 616 "../browser/frame_host/frame_tree_browsertest.cc",
616 "../browser/frame_host/interstitial_page_impl_browsertest.cc", 617 "../browser/frame_host/interstitial_page_impl_browsertest.cc",
617 "../browser/frame_host/navigation_controller_impl_browsertest.cc", 618 "../browser/frame_host/navigation_controller_impl_browsertest.cc",
618 "../browser/frame_host/navigation_handle_impl_browsertest.cc", 619 "../browser/frame_host/navigation_handle_impl_browsertest.cc",
619 "../browser/frame_host/render_frame_host_impl_browsertest.cc", 620 "../browser/frame_host/render_frame_host_impl_browsertest.cc",
620 "../browser/frame_host/render_frame_host_manager_browsertest.cc", 621 "../browser/frame_host/render_frame_host_manager_browsertest.cc",
621 "../browser/frame_host/render_frame_message_filter_browsertest.cc", 622 "../browser/frame_host/render_frame_message_filter_browsertest.cc",
622 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc", 623 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc",
623 "../browser/generic_sensor_browsertest.cc", 624 "../browser/generic_sensor_browsertest.cc",
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc", 980 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc",
980 "../browser/web_contents/web_contents_view_aura_browsertest.cc", 981 "../browser/web_contents/web_contents_view_aura_browsertest.cc",
981 ] 982 ]
982 } 983 }
983 984
984 if (is_chromecast) { 985 if (is_chromecast) {
985 sources -= [ 986 sources -= [
986 # The cast shell media pipeline doesn't produce real video frames that we 987 # The cast shell media pipeline doesn't produce real video frames that we
987 # can inspect. 988 # can inspect.
988 "../browser/media/media_color_browsertest.cc", 989 "../browser/media/media_color_browsertest.cc",
990
991 # The cast shell has plugin support but no pdf, causing data URL PDF tests
992 # to fail.
993 "../browser/frame_host/data_url_navigation_browsertest.cc",
989 ] 994 ]
990 } 995 }
991 } 996 }
992 997
993 test("content_unittests") { 998 test("content_unittests") {
994 # See comment at the top of //content/BUILD.gn for why this is disabled in 999 # See comment at the top of //content/BUILD.gn for why this is disabled in
995 # component builds. 1000 # component builds.
996 if (is_component_build) { 1001 if (is_component_build) {
997 check_includes = false 1002 check_includes = false
998 } 1003 }
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after
1831 if (is_android) { 1836 if (is_android) {
1832 deps += [ "//testing/android/native_test:native_test_native_code" ] 1837 deps += [ "//testing/android/native_test:native_test_native_code" ]
1833 } 1838 }
1834 } 1839 }
1835 1840
1836 group("fuzzers") { 1841 group("fuzzers") {
1837 deps = [ 1842 deps = [
1838 "//content/test/fuzzer", 1843 "//content/test/fuzzer",
1839 ] 1844 ]
1840 } 1845 }
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/test/data/data_url_navigations.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698