52 lines
2.1 KiB
Diff
52 lines
2.1 KiB
Diff
diff --git chrome/browser/ui/BUILD.gn chrome/browser/ui/BUILD.gn
|
|
index d207627330a3..66c32686f98a 100644
|
|
--- chrome/browser/ui/BUILD.gn
|
|
+++ chrome/browser/ui/BUILD.gn
|
|
@@ -493,6 +493,7 @@ split_static_library("ui") {
|
|
"//chrome/browser/ui/webui/usb_internals:mojo_bindings",
|
|
"//chrome/common",
|
|
"//chrome/common:search_mojom",
|
|
+ "//chrome/common:service_process_mojom",
|
|
"//chrome/common/net",
|
|
"//chrome/installer/util:with_no_strings",
|
|
"//components/about_ui",
|
|
diff --git content/app/content_service_manager_main_delegate.h content/app/content_service_manager_main_delegate.h
|
|
index 7563ce48bf5e..6c594749d57b 100644
|
|
--- content/app/content_service_manager_main_delegate.h
|
|
+++ content/app/content_service_manager_main_delegate.h
|
|
@@ -16,7 +16,8 @@ namespace content {
|
|
|
|
class ContentMainRunner;
|
|
|
|
-class ContentServiceManagerMainDelegate : public service_manager::MainDelegate {
|
|
+class CONTENT_EXPORT ContentServiceManagerMainDelegate :
|
|
+ public service_manager::MainDelegate {
|
|
public:
|
|
explicit ContentServiceManagerMainDelegate(const ContentMainParams& params);
|
|
~ContentServiceManagerMainDelegate() override;
|
|
diff --git third_party/WebKit/Source/controller/BUILD.gn third_party/WebKit/Source/controller/BUILD.gn
|
|
index dbcd69337de8..fc0b6aca080f 100644
|
|
--- third_party/WebKit/Source/controller/BUILD.gn
|
|
+++ third_party/WebKit/Source/controller/BUILD.gn
|
|
@@ -15,6 +15,7 @@ component("controller") {
|
|
output_name = "blink_controller"
|
|
|
|
deps = [
|
|
+ "//cef:webkit_set",
|
|
"//skia",
|
|
"//third_party/WebKit/Source/core",
|
|
"//third_party/WebKit/Source/modules",
|
|
diff --git third_party/WebKit/Source/core/BUILD.gn third_party/WebKit/Source/core/BUILD.gn
|
|
index 67bbab12ea53..881310a760ee 100644
|
|
--- third_party/WebKit/Source/core/BUILD.gn
|
|
+++ third_party/WebKit/Source/core/BUILD.gn
|
|
@@ -1189,6 +1189,8 @@ group("all_generators") {
|
|
target("jumbo_" + core_link_small_target_type, "core_generated") {
|
|
sources = bindings_core_v8_files
|
|
|
|
+ visibility += [ "//cef:webkit_set" ]
|
|
+
|
|
# Add all sources generated by the targets above.
|
|
foreach(current, targets_generating_sources) {
|
|
sources += get_target_outputs(current)
|