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

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

Issue 2931173003: Implement the V2 sandbox in the process launcher. (Closed)
Patch Set: Add comment explaining V2 sandbox Created 3 years, 5 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 | « chrome/app/chrome_exe_main_mac.cc ('k') | content/browser/child_process_launcher_helper.h » ('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/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 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 "renderer_host/text_input_manager.cc", 1319 "renderer_host/text_input_manager.cc",
1320 "renderer_host/text_input_manager.h", 1320 "renderer_host/text_input_manager.h",
1321 "renderer_host/ui_events_helper.cc", 1321 "renderer_host/ui_events_helper.cc",
1322 "renderer_host/ui_events_helper.h", 1322 "renderer_host/ui_events_helper.h",
1323 "renderer_host/webmenurunner_mac.h", 1323 "renderer_host/webmenurunner_mac.h",
1324 "renderer_host/webmenurunner_mac.mm", 1324 "renderer_host/webmenurunner_mac.mm",
1325 "resolve_proxy_msg_helper.cc", 1325 "resolve_proxy_msg_helper.cc",
1326 "resolve_proxy_msg_helper.h", 1326 "resolve_proxy_msg_helper.h",
1327 "resource_context_impl.cc", 1327 "resource_context_impl.cc",
1328 "resource_context_impl.h", 1328 "resource_context_impl.h",
1329 "sandbox_parameters_mac.h",
1330 "sandbox_parameters_mac.mm",
1329 "screen_orientation/screen_orientation_provider.cc", 1331 "screen_orientation/screen_orientation_provider.cc",
1330 "screen_orientation/screen_orientation_provider.h", 1332 "screen_orientation/screen_orientation_provider.h",
1331 "service_manager/common_browser_interfaces.cc", 1333 "service_manager/common_browser_interfaces.cc",
1332 "service_manager/common_browser_interfaces.h", 1334 "service_manager/common_browser_interfaces.h",
1333 "service_manager/merge_dictionary.cc", 1335 "service_manager/merge_dictionary.cc",
1334 "service_manager/merge_dictionary.h", 1336 "service_manager/merge_dictionary.h",
1335 "service_manager/service_manager_context.cc", 1337 "service_manager/service_manager_context.cc",
1336 "service_manager/service_manager_context.h", 1338 "service_manager/service_manager_context.h",
1337 "service_worker/embedded_worker_instance.cc", 1339 "service_worker/embedded_worker_instance.cc",
1338 "service_worker/embedded_worker_instance.h", 1340 "service_worker/embedded_worker_instance.h",
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 "media/capture/window_activity_tracker_aura.h", 1671 "media/capture/window_activity_tracker_aura.h",
1670 ] 1672 ]
1671 } 1673 }
1672 if (is_mac) { 1674 if (is_mac) {
1673 sources += [ 1675 sources += [
1674 "media/capture/cursor_renderer_mac.h", 1676 "media/capture/cursor_renderer_mac.h",
1675 "media/capture/cursor_renderer_mac.mm", 1677 "media/capture/cursor_renderer_mac.mm",
1676 "media/capture/window_activity_tracker_mac.h", 1678 "media/capture/window_activity_tracker_mac.h",
1677 "media/capture/window_activity_tracker_mac.mm", 1679 "media/capture/window_activity_tracker_mac.mm",
1678 ] 1680 ]
1681 deps += [ "//sandbox/mac:seatbelt" ]
1679 } 1682 }
1680 if (enable_webrtc) { 1683 if (enable_webrtc) {
1681 sources += [ 1684 sources += [
1682 "media/capture/desktop_capture_device.cc", 1685 "media/capture/desktop_capture_device.cc",
1683 "media/capture/desktop_capture_device.h", 1686 "media/capture/desktop_capture_device.h",
1684 ] 1687 ]
1685 deps += [ "//third_party/webrtc/modules/desktop_capture" ] 1688 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
1686 } 1689 }
1687 } 1690 }
1688 1691
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
2150 if (!is_component_build) { 2153 if (!is_component_build) {
2151 public_deps = [ 2154 public_deps = [
2152 ":browser", 2155 ":browser",
2153 ] 2156 ]
2154 } else { 2157 } else {
2155 public_deps = [ 2158 public_deps = [
2156 "//third_party/leveldatabase", 2159 "//third_party/leveldatabase",
2157 ] 2160 ]
2158 } 2161 }
2159 } 2162 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_exe_main_mac.cc ('k') | content/browser/child_process_launcher_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698