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

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

Issue 2710823003: NOCOMMIT prototype: GRC service plumbing and process priority
Patch Set: Buildfixes Created 3 years, 9 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("//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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "//net:http_server", 100 "//net:http_server",
101 "//ppapi/features", 101 "//ppapi/features",
102 "//printing/features", 102 "//printing/features",
103 "//services/catalog:constants", 103 "//services/catalog:constants",
104 "//services/catalog/public/cpp", 104 "//services/catalog/public/cpp",
105 "//services/catalog/public/interfaces:constants", 105 "//services/catalog/public/interfaces:constants",
106 "//services/device:lib", 106 "//services/device:lib",
107 "//services/device/public/interfaces:constants", 107 "//services/device/public/interfaces:constants",
108 "//services/file:lib", 108 "//services/file:lib",
109 "//services/file/public/interfaces", 109 "//services/file/public/interfaces",
110 "//services/resource_coordinator:lib",
111 "//services/resource_coordinator/public/interfaces",
110 "//services/service_manager", 112 "//services/service_manager",
111 "//services/service_manager/public/cpp", 113 "//services/service_manager/public/cpp",
112 "//services/service_manager/public/interfaces", 114 "//services/service_manager/public/interfaces",
113 "//services/service_manager/runner/common", 115 "//services/service_manager/runner/common",
114 "//services/service_manager/runner/host:lib", 116 "//services/service_manager/runner/host:lib",
115 "//services/shape_detection:lib", 117 "//services/shape_detection:lib",
116 "//services/shape_detection/public/interfaces", 118 "//services/shape_detection/public/interfaces",
117 "//services/ui/gpu/interfaces", 119 "//services/ui/gpu/interfaces",
118 "//services/ui/public/cpp/gpu", 120 "//services/ui/public/cpp/gpu",
119 "//skia", 121 "//skia",
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 "renderer_host/text_input_manager.cc", 1226 "renderer_host/text_input_manager.cc",
1225 "renderer_host/text_input_manager.h", 1227 "renderer_host/text_input_manager.h",
1226 "renderer_host/ui_events_helper.cc", 1228 "renderer_host/ui_events_helper.cc",
1227 "renderer_host/ui_events_helper.h", 1229 "renderer_host/ui_events_helper.h",
1228 "renderer_host/webmenurunner_mac.h", 1230 "renderer_host/webmenurunner_mac.h",
1229 "renderer_host/webmenurunner_mac.mm", 1231 "renderer_host/webmenurunner_mac.mm",
1230 "resolve_proxy_msg_helper.cc", 1232 "resolve_proxy_msg_helper.cc",
1231 "resolve_proxy_msg_helper.h", 1233 "resolve_proxy_msg_helper.h",
1232 "resource_context_impl.cc", 1234 "resource_context_impl.cc",
1233 "resource_context_impl.h", 1235 "resource_context_impl.h",
1236 "resource_coordinator_web_contents_observer.cc",
1237 "resource_coordinator_web_contents_observer.h",
1234 "screen_orientation/screen_orientation_delegate_win.cc", 1238 "screen_orientation/screen_orientation_delegate_win.cc",
1235 "screen_orientation/screen_orientation_delegate_win.h", 1239 "screen_orientation/screen_orientation_delegate_win.h",
1236 "screen_orientation/screen_orientation_provider.cc", 1240 "screen_orientation/screen_orientation_provider.cc",
1237 "screen_orientation/screen_orientation_provider.h", 1241 "screen_orientation/screen_orientation_provider.h",
1238 "service_manager/merge_dictionary.cc", 1242 "service_manager/merge_dictionary.cc",
1239 "service_manager/merge_dictionary.h", 1243 "service_manager/merge_dictionary.h",
1240 "service_manager/service_manager_context.cc", 1244 "service_manager/service_manager_context.cc",
1241 "service_manager/service_manager_context.h", 1245 "service_manager/service_manager_context.h",
1242 "service_worker/embedded_worker_instance.cc", 1246 "service_worker/embedded_worker_instance.cc",
1243 "service_worker/embedded_worker_instance.h", 1247 "service_worker/embedded_worker_instance.h",
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 if (!is_component_build) { 2036 if (!is_component_build) {
2033 public_deps = [ 2037 public_deps = [
2034 ":browser", 2038 ":browser",
2035 ] 2039 ]
2036 } else { 2040 } else {
2037 public_deps = [ 2041 public_deps = [
2038 "//third_party/leveldatabase", 2042 "//third_party/leveldatabase",
2039 ] 2043 ]
2040 } 2044 }
2041 } 2045 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698