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

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

Issue 2931173003: Implement the V2 sandbox in the process launcher. (Closed)
Patch Set: Fix deps Created 3 years, 6 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("//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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//media/mojo/services", 99 "//media/mojo/services",
100 "//mojo/common", 100 "//mojo/common",
101 "//mojo/edk/system", 101 "//mojo/edk/system",
102 "//mojo/public/cpp/bindings", 102 "//mojo/public/cpp/bindings",
103 "//mojo/public/js", 103 "//mojo/public/js",
104 "//net", 104 "//net",
105 "//net:extras", 105 "//net:extras",
106 "//net:http_server", 106 "//net:http_server",
107 "//ppapi/features", 107 "//ppapi/features",
108 "//printing/features", 108 "//printing/features",
109 "//sandbox/mac:seatbelt",
109 "//services/catalog:constants", 110 "//services/catalog:constants",
110 "//services/catalog/public/cpp", 111 "//services/catalog/public/cpp",
111 "//services/catalog/public/interfaces:constants", 112 "//services/catalog/public/interfaces:constants",
112 "//services/data_decoder/public/interfaces", 113 "//services/data_decoder/public/interfaces",
113 "//services/device:lib", 114 "//services/device:lib",
114 "//services/device/public/interfaces", 115 "//services/device/public/interfaces",
115 "//services/device/public/interfaces:constants", 116 "//services/device/public/interfaces:constants",
116 "//services/file:lib", 117 "//services/file:lib",
117 "//services/file/public/interfaces", 118 "//services/file/public/interfaces",
118 "//services/resource_coordinator:lib", 119 "//services/resource_coordinator:lib",
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1310 "renderer_host/text_input_manager.cc", 1311 "renderer_host/text_input_manager.cc",
1311 "renderer_host/text_input_manager.h", 1312 "renderer_host/text_input_manager.h",
1312 "renderer_host/ui_events_helper.cc", 1313 "renderer_host/ui_events_helper.cc",
1313 "renderer_host/ui_events_helper.h", 1314 "renderer_host/ui_events_helper.h",
1314 "renderer_host/webmenurunner_mac.h", 1315 "renderer_host/webmenurunner_mac.h",
1315 "renderer_host/webmenurunner_mac.mm", 1316 "renderer_host/webmenurunner_mac.mm",
1316 "resolve_proxy_msg_helper.cc", 1317 "resolve_proxy_msg_helper.cc",
1317 "resolve_proxy_msg_helper.h", 1318 "resolve_proxy_msg_helper.h",
1318 "resource_context_impl.cc", 1319 "resource_context_impl.cc",
1319 "resource_context_impl.h", 1320 "resource_context_impl.h",
1321 "sandbox_parameters_mac.h",
1322 "sandbox_parameters_mac.mm",
1320 "screen_orientation/screen_orientation_provider.cc", 1323 "screen_orientation/screen_orientation_provider.cc",
1321 "screen_orientation/screen_orientation_provider.h", 1324 "screen_orientation/screen_orientation_provider.h",
1322 "service_manager/common_browser_interfaces.cc", 1325 "service_manager/common_browser_interfaces.cc",
1323 "service_manager/common_browser_interfaces.h", 1326 "service_manager/common_browser_interfaces.h",
1324 "service_manager/merge_dictionary.cc", 1327 "service_manager/merge_dictionary.cc",
1325 "service_manager/merge_dictionary.h", 1328 "service_manager/merge_dictionary.h",
1326 "service_manager/service_manager_context.cc", 1329 "service_manager/service_manager_context.cc",
1327 "service_manager/service_manager_context.h", 1330 "service_manager/service_manager_context.h",
1328 "service_worker/embedded_worker_instance.cc", 1331 "service_worker/embedded_worker_instance.cc",
1329 "service_worker/embedded_worker_instance.h", 1332 "service_worker/embedded_worker_instance.h",
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
2141 if (!is_component_build) { 2144 if (!is_component_build) {
2142 public_deps = [ 2145 public_deps = [
2143 ":browser", 2146 ":browser",
2144 ] 2147 ]
2145 } else { 2148 } else {
2146 public_deps = [ 2149 public_deps = [
2147 "//third_party/leveldatabase", 2150 "//third_party/leveldatabase",
2148 ] 2151 ]
2149 } 2152 }
2150 } 2153 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698