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

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

Issue 2702503002: Block renderer-initiated main frame navigations to data URLs (Closed)
Patch Set: Fix Android PDF tests where PDFs should be downloaded 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 "../browser/devtools/protocol/devtools_protocol_browsertest.cc", 601 "../browser/devtools/protocol/devtools_protocol_browsertest.cc",
602 "../browser/devtools/site_per_process_devtools_browsertest.cc", 602 "../browser/devtools/site_per_process_devtools_browsertest.cc",
603 "../browser/dom_storage/dom_storage_browsertest.cc", 603 "../browser/dom_storage/dom_storage_browsertest.cc",
604 "../browser/download/download_browsertest.cc", 604 "../browser/download/download_browsertest.cc",
605 "../browser/download/drag_download_file_browsertest.cc", 605 "../browser/download/drag_download_file_browsertest.cc",
606 "../browser/download/mhtml_generation_browsertest.cc", 606 "../browser/download/mhtml_generation_browsertest.cc",
607 "../browser/download/save_package_browsertest.cc", 607 "../browser/download/save_package_browsertest.cc",
608 "../browser/fileapi/file_system_browsertest.cc", 608 "../browser/fileapi/file_system_browsertest.cc",
609 "../browser/fileapi/fileapi_browsertest.cc", 609 "../browser/fileapi/fileapi_browsertest.cc",
610 "../browser/find_request_manager_browsertest.cc", 610 "../browser/find_request_manager_browsertest.cc",
611 "../browser/frame_host/data_url_navigation_browsertest.cc",
611 "../browser/frame_host/form_submission_throttle_browsertest.cc", 612 "../browser/frame_host/form_submission_throttle_browsertest.cc",
612 "../browser/frame_host/frame_tree_browsertest.cc", 613 "../browser/frame_host/frame_tree_browsertest.cc",
613 "../browser/frame_host/interstitial_page_impl_browsertest.cc", 614 "../browser/frame_host/interstitial_page_impl_browsertest.cc",
614 "../browser/frame_host/navigation_controller_impl_browsertest.cc", 615 "../browser/frame_host/navigation_controller_impl_browsertest.cc",
615 "../browser/frame_host/navigation_handle_impl_browsertest.cc", 616 "../browser/frame_host/navigation_handle_impl_browsertest.cc",
616 "../browser/frame_host/render_frame_host_impl_browsertest.cc", 617 "../browser/frame_host/render_frame_host_impl_browsertest.cc",
617 "../browser/frame_host/render_frame_host_manager_browsertest.cc", 618 "../browser/frame_host/render_frame_host_manager_browsertest.cc",
618 "../browser/frame_host/render_frame_message_filter_browsertest.cc", 619 "../browser/frame_host/render_frame_message_filter_browsertest.cc",
619 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc", 620 "../browser/frame_host/render_widget_host_view_child_frame_browsertest.cc",
620 "../browser/generic_sensor_browsertest.cc", 621 "../browser/generic_sensor_browsertest.cc",
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc", 981 "../browser/renderer_host/input/touch_selection_controller_client_aura_bro wsertest.cc",
981 "../browser/web_contents/web_contents_view_aura_browsertest.cc", 982 "../browser/web_contents/web_contents_view_aura_browsertest.cc",
982 ] 983 ]
983 } 984 }
984 985
985 if (is_chromecast) { 986 if (is_chromecast) {
986 sources -= [ 987 sources -= [
987 # The cast shell media pipeline doesn't produce real video frames that we 988 # The cast shell media pipeline doesn't produce real video frames that we
988 # can inspect. 989 # can inspect.
989 "../browser/media/media_color_browsertest.cc", 990 "../browser/media/media_color_browsertest.cc",
991
992 # The cast shell has plugin support but no pdf, causing data URL PDF tests
993 # to fail.
994 "../browser/frame_host/data_url_navigation_browsertest.cc",
990 ] 995 ]
991 } 996 }
992 } 997 }
993 998
994 test("content_unittests") { 999 test("content_unittests") {
995 # See comment at the top of //content/BUILD.gn for why this is disabled in 1000 # See comment at the top of //content/BUILD.gn for why this is disabled in
996 # component builds. 1001 # component builds.
997 if (is_component_build) { 1002 if (is_component_build) {
998 check_includes = false 1003 check_includes = false
999 } 1004 }
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
1817 if (is_android) { 1822 if (is_android) {
1818 deps += [ "//testing/android/native_test:native_test_native_code" ] 1823 deps += [ "//testing/android/native_test:native_test_native_code" ]
1819 } 1824 }
1820 } 1825 }
1821 1826
1822 group("fuzzers") { 1827 group("fuzzers") {
1823 deps = [ 1828 deps = [
1824 "//content/test/fuzzer", 1829 "//content/test/fuzzer",
1825 ] 1830 ]
1826 } 1831 }
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