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

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

Issue 2702503002: Block renderer-initiated main frame navigations to data URLs (Closed)
Patch Set: Re-block data to data navigations, rebase, address nasko comments 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
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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 "../browser/devtools/protocol/devtools_protocol_browsertest.cc", 610 "../browser/devtools/protocol/devtools_protocol_browsertest.cc",
611 "../browser/devtools/site_per_process_devtools_browsertest.cc", 611 "../browser/devtools/site_per_process_devtools_browsertest.cc",
612 "../browser/dom_storage/dom_storage_browsertest.cc", 612 "../browser/dom_storage/dom_storage_browsertest.cc",
613 "../browser/download/download_browsertest.cc", 613 "../browser/download/download_browsertest.cc",
614 "../browser/download/drag_download_file_browsertest.cc", 614 "../browser/download/drag_download_file_browsertest.cc",
615 "../browser/download/mhtml_generation_browsertest.cc", 615 "../browser/download/mhtml_generation_browsertest.cc",
616 "../browser/download/save_package_browsertest.cc", 616 "../browser/download/save_package_browsertest.cc",
617 "../browser/fileapi/file_system_browsertest.cc", 617 "../browser/fileapi/file_system_browsertest.cc",
618 "../browser/fileapi/fileapi_browsertest.cc", 618 "../browser/fileapi/fileapi_browsertest.cc",
619 "../browser/find_request_manager_browsertest.cc", 619 "../browser/find_request_manager_browsertest.cc",
620 "../browser/frame_host/data_url_navigation_browsertest.cc",
620 "../browser/frame_host/form_submission_throttle_browsertest.cc", 621 "../browser/frame_host/form_submission_throttle_browsertest.cc",
621 "../browser/frame_host/frame_tree_browsertest.cc", 622 "../browser/frame_host/frame_tree_browsertest.cc",
622 "../browser/frame_host/interstitial_page_impl_browsertest.cc", 623 "../browser/frame_host/interstitial_page_impl_browsertest.cc",
623 "../browser/frame_host/navigation_controller_impl_browsertest.cc", 624 "../browser/frame_host/navigation_controller_impl_browsertest.cc",
624 "../browser/frame_host/navigation_handle_impl_browsertest.cc", 625 "../browser/frame_host/navigation_handle_impl_browsertest.cc",
625 "../browser/frame_host/render_frame_host_impl_browsertest.cc", 626 "../browser/frame_host/render_frame_host_impl_browsertest.cc",
626 "../browser/frame_host/render_frame_host_manager_browsertest.cc", 627 "../browser/frame_host/render_frame_host_manager_browsertest.cc",
627 "../browser/frame_host/render_frame_message_filter_browsertest.cc", 628 "../browser/frame_host/render_frame_message_filter_browsertest.cc",
628 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc", 629 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc",
629 "../browser/generic_sensor_browsertest.cc", 630 "../browser/generic_sensor_browsertest.cc",
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc", 985 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc",
985 "../browser/web_contents/web_contents_view_aura_browsertest.cc", 986 "../browser/web_contents/web_contents_view_aura_browsertest.cc",
986 ] 987 ]
987 } 988 }
988 989
989 if (is_chromecast) { 990 if (is_chromecast) {
990 sources -= [ 991 sources -= [
991 # The cast shell media pipeline doesn't produce real video frames that we 992 # The cast shell media pipeline doesn't produce real video frames that we
992 # can inspect. 993 # can inspect.
993 "../browser/media/media_color_browsertest.cc", 994 "../browser/media/media_color_browsertest.cc",
995
996 # The cast shell has plugin support but no pdf, causing data URL PDF tests
997 # to fail.
998 "../browser/frame_host/data_url_navigation_browsertest.cc",
994 ] 999 ]
995 } 1000 }
996 } 1001 }
997 1002
998 test("content_unittests") { 1003 test("content_unittests") {
999 # See comment at the top of //content/BUILD.gn for why this is disabled in 1004 # See comment at the top of //content/BUILD.gn for why this is disabled in
1000 # component builds. 1005 # component builds.
1001 if (is_component_build) { 1006 if (is_component_build) {
1002 check_includes = false 1007 check_includes = false
1003 } 1008 }
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1856 if (is_android) { 1861 if (is_android) {
1857 deps += [ "//testing/android/native_test:native_test_native_code" ] 1862 deps += [ "//testing/android/native_test:native_test_native_code" ]
1858 } 1863 }
1859 } 1864 }
1860 1865
1861 group("fuzzers") { 1866 group("fuzzers") {
1862 deps = [ 1867 deps = [
1863 "//content/test/fuzzer", 1868 "//content/test/fuzzer",
1864 ] 1869 ]
1865 } 1870 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698