Commit c5acc4fc authored by Chris Sharp's avatar Chris Sharp Committed by Commit Bot

Fix errors in third_party/blink/common/BUILD.gn

Fix a few errors found with gn check.

gn check related output:
The target:
  //third_party/blink/common:common
has a source file:
  //third_party/blink/common/loader/throttling_url_loader.h
which was not found.
ERROR at //third_party/blink/common/mediastream/media_devices.cc:6:11: Can't include this header from here.
#include "media/capture/video/video_capture_device_descriptor.h"
          ^----------------------------------------------------
The target:
  //third_party/blink/common:common
is including a file from the target:
  //media/capture:capture_base
ERROR at //third_party/blink/common/mediastream/media_stream_mojom_traits.cc:9:11: Can't include this header from here.
#include "media/capture/mojom/video_capture_types_mojom_traits.h"
          ^-----------------------------------------------------
The target:
  //third_party/blink/common:common
is including a file from the target:
  //media/capture/mojom:video_capture_mojom_support

Change-Id: I86fffcdb242211e674d72a41e37d85405ddbb8f9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2140431Reviewed-by: default avatarDaniel Cheng <dcheng@chromium.org>
Commit-Queue: Chris Sharp <csharp@chromium.org>
Cr-Commit-Position: refs/heads/master@{#757183}
parent 0fcd065d
...@@ -80,7 +80,6 @@ jumbo_source_set("common") { ...@@ -80,7 +80,6 @@ jumbo_source_set("common") {
"loader/mime_sniffing_url_loader.cc", "loader/mime_sniffing_url_loader.cc",
"loader/resource_type_util.cc", "loader/resource_type_util.cc",
"loader/throttling_url_loader.cc", "loader/throttling_url_loader.cc",
"loader/throttling_url_loader.h",
"loader/url_loader_factory_bundle.cc", "loader/url_loader_factory_bundle.cc",
"loader/url_loader_factory_bundle_mojom_traits.cc", "loader/url_loader_factory_bundle_mojom_traits.cc",
"loader/url_loader_throttle.cc", "loader/url_loader_throttle.cc",
...@@ -132,6 +131,8 @@ jumbo_source_set("common") { ...@@ -132,6 +131,8 @@ jumbo_source_set("common") {
deps = [ deps = [
"//base", "//base",
"//media/capture:capture_base",
"//media/capture/mojom:video_capture_mojom_support",
"//mojo/public/cpp/system", "//mojo/public/cpp/system",
"//net", "//net",
"//services/metrics/public/cpp:metrics_cpp", "//services/metrics/public/cpp:metrics_cpp",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment