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

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

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Address jam@ comments; many minor code and comment updates. 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 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 "frame_host/frame_tree.cc", 613 "frame_host/frame_tree.cc",
614 "frame_host/frame_tree.h", 614 "frame_host/frame_tree.h",
615 "frame_host/frame_tree_node.cc", 615 "frame_host/frame_tree_node.cc",
616 "frame_host/frame_tree_node.h", 616 "frame_host/frame_tree_node.h",
617 "frame_host/frame_tree_node_blame_context.cc", 617 "frame_host/frame_tree_node_blame_context.cc",
618 "frame_host/frame_tree_node_blame_context.h", 618 "frame_host/frame_tree_node_blame_context.h",
619 "frame_host/interstitial_page_impl.cc", 619 "frame_host/interstitial_page_impl.cc",
620 "frame_host/interstitial_page_impl.h", 620 "frame_host/interstitial_page_impl.h",
621 "frame_host/interstitial_page_navigator_impl.cc", 621 "frame_host/interstitial_page_navigator_impl.cc",
622 "frame_host/interstitial_page_navigator_impl.h", 622 "frame_host/interstitial_page_navigator_impl.h",
623 "frame_host/mixed_content_navigation_throttle.cc",
624 "frame_host/mixed_content_navigation_throttle.h",
623 "frame_host/navigation_controller_android.cc", 625 "frame_host/navigation_controller_android.cc",
624 "frame_host/navigation_controller_android.h", 626 "frame_host/navigation_controller_android.h",
625 "frame_host/navigation_controller_delegate.h", 627 "frame_host/navigation_controller_delegate.h",
626 "frame_host/navigation_controller_impl.cc", 628 "frame_host/navigation_controller_impl.cc",
627 "frame_host/navigation_controller_impl.h", 629 "frame_host/navigation_controller_impl.h",
628 "frame_host/navigation_entry_impl.cc", 630 "frame_host/navigation_entry_impl.cc",
629 "frame_host/navigation_entry_impl.h", 631 "frame_host/navigation_entry_impl.h",
630 "frame_host/navigation_entry_screenshot_manager.cc", 632 "frame_host/navigation_entry_screenshot_manager.cc",
631 "frame_host/navigation_entry_screenshot_manager.h", 633 "frame_host/navigation_entry_screenshot_manager.h",
632 "frame_host/navigation_handle_impl.cc", 634 "frame_host/navigation_handle_impl.cc",
(...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after
2006 if (!is_component_build) { 2008 if (!is_component_build) {
2007 public_deps = [ 2009 public_deps = [
2008 ":browser", 2010 ":browser",
2009 ] 2011 ]
2010 } else { 2012 } else {
2011 public_deps = [ 2013 public_deps = [
2012 "//third_party/leveldatabase", 2014 "//third_party/leveldatabase",
2013 ] 2015 ]
2014 } 2016 }
2015 } 2017 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698