| 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("//gpu/vulkan/features.gni") | 7 import("//gpu/vulkan/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") |
| (...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 "renderer_host/text_input_manager.cc", | 1314 "renderer_host/text_input_manager.cc", |
| 1315 "renderer_host/text_input_manager.h", | 1315 "renderer_host/text_input_manager.h", |
| 1316 "renderer_host/ui_events_helper.cc", | 1316 "renderer_host/ui_events_helper.cc", |
| 1317 "renderer_host/ui_events_helper.h", | 1317 "renderer_host/ui_events_helper.h", |
| 1318 "renderer_host/webmenurunner_mac.h", | 1318 "renderer_host/webmenurunner_mac.h", |
| 1319 "renderer_host/webmenurunner_mac.mm", | 1319 "renderer_host/webmenurunner_mac.mm", |
| 1320 "resolve_proxy_msg_helper.cc", | 1320 "resolve_proxy_msg_helper.cc", |
| 1321 "resolve_proxy_msg_helper.h", | 1321 "resolve_proxy_msg_helper.h", |
| 1322 "resource_context_impl.cc", | 1322 "resource_context_impl.cc", |
| 1323 "resource_context_impl.h", | 1323 "resource_context_impl.h", |
| 1324 "sandbox_parameters_mac.h", |
| 1325 "sandbox_parameters_mac.mm", |
| 1324 "screen_orientation/screen_orientation_provider.cc", | 1326 "screen_orientation/screen_orientation_provider.cc", |
| 1325 "screen_orientation/screen_orientation_provider.h", | 1327 "screen_orientation/screen_orientation_provider.h", |
| 1326 "service_manager/common_browser_interfaces.cc", | 1328 "service_manager/common_browser_interfaces.cc", |
| 1327 "service_manager/common_browser_interfaces.h", | 1329 "service_manager/common_browser_interfaces.h", |
| 1328 "service_manager/merge_dictionary.cc", | 1330 "service_manager/merge_dictionary.cc", |
| 1329 "service_manager/merge_dictionary.h", | 1331 "service_manager/merge_dictionary.h", |
| 1330 "service_manager/service_manager_context.cc", | 1332 "service_manager/service_manager_context.cc", |
| 1331 "service_manager/service_manager_context.h", | 1333 "service_manager/service_manager_context.h", |
| 1332 "service_worker/embedded_worker_instance.cc", | 1334 "service_worker/embedded_worker_instance.cc", |
| 1333 "service_worker/embedded_worker_instance.h", | 1335 "service_worker/embedded_worker_instance.h", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1664 "media/capture/window_activity_tracker_aura.h", | 1666 "media/capture/window_activity_tracker_aura.h", |
| 1665 ] | 1667 ] |
| 1666 } | 1668 } |
| 1667 if (is_mac) { | 1669 if (is_mac) { |
| 1668 sources += [ | 1670 sources += [ |
| 1669 "media/capture/cursor_renderer_mac.h", | 1671 "media/capture/cursor_renderer_mac.h", |
| 1670 "media/capture/cursor_renderer_mac.mm", | 1672 "media/capture/cursor_renderer_mac.mm", |
| 1671 "media/capture/window_activity_tracker_mac.h", | 1673 "media/capture/window_activity_tracker_mac.h", |
| 1672 "media/capture/window_activity_tracker_mac.mm", | 1674 "media/capture/window_activity_tracker_mac.mm", |
| 1673 ] | 1675 ] |
| 1676 deps += [ "//sandbox/mac:seatbelt" ] |
| 1674 } | 1677 } |
| 1675 if (enable_webrtc) { | 1678 if (enable_webrtc) { |
| 1676 sources += [ | 1679 sources += [ |
| 1677 "media/capture/desktop_capture_device.cc", | 1680 "media/capture/desktop_capture_device.cc", |
| 1678 "media/capture/desktop_capture_device.h", | 1681 "media/capture/desktop_capture_device.h", |
| 1679 ] | 1682 ] |
| 1680 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 1683 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 1681 } | 1684 } |
| 1682 } | 1685 } |
| 1683 | 1686 |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2147 if (!is_component_build) { | 2150 if (!is_component_build) { |
| 2148 public_deps = [ | 2151 public_deps = [ |
| 2149 ":browser", | 2152 ":browser", |
| 2150 ] | 2153 ] |
| 2151 } else { | 2154 } else { |
| 2152 public_deps = [ | 2155 public_deps = [ |
| 2153 "//third_party/leveldatabase", | 2156 "//third_party/leveldatabase", |
| 2154 ] | 2157 ] |
| 2155 } | 2158 } |
| 2156 } | 2159 } |
| OLD | NEW |