| OLD | NEW |
| 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 "frame_host/frame_tree.cc", | 614 "frame_host/frame_tree.cc", |
| 615 "frame_host/frame_tree.h", | 615 "frame_host/frame_tree.h", |
| 616 "frame_host/frame_tree_node.cc", | 616 "frame_host/frame_tree_node.cc", |
| 617 "frame_host/frame_tree_node.h", | 617 "frame_host/frame_tree_node.h", |
| 618 "frame_host/frame_tree_node_blame_context.cc", | 618 "frame_host/frame_tree_node_blame_context.cc", |
| 619 "frame_host/frame_tree_node_blame_context.h", | 619 "frame_host/frame_tree_node_blame_context.h", |
| 620 "frame_host/interstitial_page_impl.cc", | 620 "frame_host/interstitial_page_impl.cc", |
| 621 "frame_host/interstitial_page_impl.h", | 621 "frame_host/interstitial_page_impl.h", |
| 622 "frame_host/interstitial_page_navigator_impl.cc", | 622 "frame_host/interstitial_page_navigator_impl.cc", |
| 623 "frame_host/interstitial_page_navigator_impl.h", | 623 "frame_host/interstitial_page_navigator_impl.h", |
| 624 "frame_host/mixed_content_navigation_throttle.cc", |
| 625 "frame_host/mixed_content_navigation_throttle.h", |
| 624 "frame_host/navigation_controller_android.cc", | 626 "frame_host/navigation_controller_android.cc", |
| 625 "frame_host/navigation_controller_android.h", | 627 "frame_host/navigation_controller_android.h", |
| 626 "frame_host/navigation_controller_delegate.h", | 628 "frame_host/navigation_controller_delegate.h", |
| 627 "frame_host/navigation_controller_impl.cc", | 629 "frame_host/navigation_controller_impl.cc", |
| 628 "frame_host/navigation_controller_impl.h", | 630 "frame_host/navigation_controller_impl.h", |
| 629 "frame_host/navigation_entry_impl.cc", | 631 "frame_host/navigation_entry_impl.cc", |
| 630 "frame_host/navigation_entry_impl.h", | 632 "frame_host/navigation_entry_impl.h", |
| 631 "frame_host/navigation_entry_screenshot_manager.cc", | 633 "frame_host/navigation_entry_screenshot_manager.cc", |
| 632 "frame_host/navigation_entry_screenshot_manager.h", | 634 "frame_host/navigation_entry_screenshot_manager.h", |
| 633 "frame_host/navigation_handle_impl.cc", | 635 "frame_host/navigation_handle_impl.cc", |
| (...skipping 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2005 if (!is_component_build) { | 2007 if (!is_component_build) { |
| 2006 public_deps = [ | 2008 public_deps = [ |
| 2007 ":browser", | 2009 ":browser", |
| 2008 ] | 2010 ] |
| 2009 } else { | 2011 } else { |
| 2010 public_deps = [ | 2012 public_deps = [ |
| 2011 "//third_party/leveldatabase", | 2013 "//third_party/leveldatabase", |
| 2012 ] | 2014 ] |
| 2013 } | 2015 } |
| 2014 } | 2016 } |
| OLD | NEW |