| 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 1653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1664 "renderer_host/pepper/pepper_udp_socket_message_filter.h", | 1664 "renderer_host/pepper/pepper_udp_socket_message_filter.h", |
| 1665 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.cc", | 1665 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.cc", |
| 1666 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.h", | 1666 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.h", |
| 1667 "renderer_host/pepper/quota_reservation.cc", | 1667 "renderer_host/pepper/quota_reservation.cc", |
| 1668 "renderer_host/pepper/quota_reservation.h", | 1668 "renderer_host/pepper/quota_reservation.h", |
| 1669 "renderer_host/pepper/ssl_context_helper.cc", | 1669 "renderer_host/pepper/ssl_context_helper.cc", |
| 1670 "renderer_host/pepper/ssl_context_helper.h", | 1670 "renderer_host/pepper/ssl_context_helper.h", |
| 1671 ] | 1671 ] |
| 1672 deps += [ | 1672 deps += [ |
| 1673 "//ppapi/host", | 1673 "//ppapi/host", |
| 1674 "//ppapi/proxy", | 1674 "//ppapi/proxy:common", |
| 1675 "//ppapi/proxy:ipc", | 1675 "//ppapi/proxy:ipc", |
| 1676 "//ppapi/shared_impl", | 1676 "//ppapi/shared_impl", |
| 1677 ] | 1677 ] |
| 1678 if (!use_ozone || use_pango) { | 1678 if (!use_ozone || use_pango) { |
| 1679 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] | 1679 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] |
| 1680 } | 1680 } |
| 1681 if (!use_pango) { | 1681 if (!use_pango) { |
| 1682 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] | 1682 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] |
| 1683 } | 1683 } |
| 1684 } | 1684 } |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2018 if (!is_component_build) { | 2018 if (!is_component_build) { |
| 2019 public_deps = [ | 2019 public_deps = [ |
| 2020 ":browser", | 2020 ":browser", |
| 2021 ] | 2021 ] |
| 2022 } else { | 2022 } else { |
| 2023 public_deps = [ | 2023 public_deps = [ |
| 2024 "//third_party/leveldatabase", | 2024 "//third_party/leveldatabase", |
| 2025 ] | 2025 ] |
| 2026 } | 2026 } |
| 2027 } | 2027 } |
| OLD | NEW |