Commit 5406b615 authored by Edward Lesmes's avatar Edward Lesmes Committed by Commit Bot

Enable gn check for several //remoting/client targets.

Change-Id: I56259bca22bf1726ef06c9002426ab080b219a92
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2316690Reviewed-by: default avatarDirk Pranke <dpranke@google.com>
Reviewed-by: default avatarJoe Downing <joedow@chromium.org>
Reviewed-by: default avatarGary Kacmarcik <garykac@chromium.org>
Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
Cr-Commit-Position: refs/heads/master@{#792904}
parent 92fe3531
...@@ -174,13 +174,8 @@ no_check_targets = [ ...@@ -174,13 +174,8 @@ no_check_targets = [
"//remoting/base/grpc_support:*", # 14 errors "//remoting/base/grpc_support:*", # 14 errors
"//remoting/base/grpc_test_support:*", # 1 error "//remoting/base/grpc_test_support:*", # 1 error
"//remoting/base:*", # 6 errors "//remoting/base:*", # 6 errors
"//remoting/client/audio:*", # 7 errors
"//remoting/client/display:*", # 55 errors "//remoting/client/display:*", # 55 errors
"//remoting/client/input:*", # 17 errors
"//remoting/client/jni:*", # 8 errors "//remoting/client/jni:*", # 8 errors
"//remoting/client/notification:*", # 12 errors
"//remoting/client/ui:*", # 13 errors
"//remoting/client:*", # 20 errors
"//remoting/codec:*", # 32 errors "//remoting/codec:*", # 32 errors
"//remoting/host/chromeos:*", # 10 errors "//remoting/host/chromeos:*", # 10 errors
"//remoting/host/file_transfer:*", # 43 errors "//remoting/host/file_transfer:*", # 43 errors
......
...@@ -44,16 +44,21 @@ static_library("client") { ...@@ -44,16 +44,21 @@ static_library("client") {
public_deps = [ "//remoting/base" ] public_deps = [ "//remoting/base" ]
deps = [ deps = [
"//jingle:webrtc_glue",
"//mojo/core/embedder", "//mojo/core/embedder",
"//remoting/base:authorization", "//remoting/base:authorization",
"//remoting/client/audio", "//remoting/client/audio",
"//remoting/client/input", "//remoting/client/input",
"//remoting/client/notification", "//remoting/client/notification",
"//remoting/client/ui", "//remoting/client/ui",
"//remoting/client/ui:ui_manipulation",
"//remoting/codec:decoder", "//remoting/codec:decoder",
"//remoting/protocol", "//remoting/protocol",
"//remoting/signaling",
"//services/network:network_service", "//services/network:network_service",
"//services/network/public/cpp",
"//services/network/public/mojom", "//services/network/public/mojom",
"//third_party/libjingle_xmpp:rtc_xmllite",
"//third_party/libyuv", "//third_party/libyuv",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
"//ui/events:dom_keycode_converter", "//ui/events:dom_keycode_converter",
...@@ -96,7 +101,11 @@ source_set("unit_tests") { ...@@ -96,7 +101,11 @@ source_set("unit_tests") {
deps = [ deps = [
":client", ":client",
"//base/test:test_support",
"//remoting/codec:encoder",
"//remoting/proto", "//remoting/proto",
"//remoting/protocol",
"//remoting/protocol:test_support",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
......
...@@ -24,6 +24,7 @@ source_set("audio") { ...@@ -24,6 +24,7 @@ source_set("audio") {
deps = [ deps = [
"//base", "//base",
"//remoting/base", "//remoting/base",
"//remoting/protocol",
] ]
libs = [] libs = []
...@@ -44,7 +45,10 @@ source_set("test_support") { ...@@ -44,7 +45,10 @@ source_set("test_support") {
"fake_async_audio_data_supplier.h", "fake_async_audio_data_supplier.h",
] ]
deps = [ "//base" ] deps = [
"//base",
"//remoting/client/audio",
]
} }
source_set("unit_tests") { source_set("unit_tests") {
...@@ -59,6 +63,7 @@ source_set("unit_tests") { ...@@ -59,6 +63,7 @@ source_set("unit_tests") {
deps = [ deps = [
":audio", ":audio",
"//base",
"//remoting/proto", "//remoting/proto",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
......
...@@ -31,6 +31,7 @@ source_set("input") { ...@@ -31,6 +31,7 @@ source_set("input") {
":normalizing_input_filter", ":normalizing_input_filter",
"//remoting/base", "//remoting/base",
"//remoting/client/ui:ui_manipulation", "//remoting/client/ui:ui_manipulation",
"//remoting/protocol",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
"//ui/events:dom_keycode_converter", "//ui/events:dom_keycode_converter",
] ]
...@@ -56,6 +57,7 @@ source_set("normalizing_input_filter") { ...@@ -56,6 +57,7 @@ source_set("normalizing_input_filter") {
deps = [ deps = [
"//remoting/base", "//remoting/base",
"//remoting/protocol",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
"//ui/events:dom_keycode_converter", "//ui/events:dom_keycode_converter",
] ]
...@@ -78,7 +80,9 @@ source_set("unit_tests") { ...@@ -78,7 +80,9 @@ source_set("unit_tests") {
deps = [ deps = [
":input", ":input",
":normalizing_input_filter_unit_tests", ":normalizing_input_filter_unit_tests",
"//base",
"//remoting/proto", "//remoting/proto",
"//remoting/protocol:test_support",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
...@@ -103,9 +107,12 @@ source_set("normalizing_input_filter_unit_tests") { ...@@ -103,9 +107,12 @@ source_set("normalizing_input_filter_unit_tests") {
deps = [ deps = [
":input", ":input",
"//remoting/client/input:normalizing_input_filter",
"//remoting/proto", "//remoting/proto",
"//remoting/protocol:test_support",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
"//third_party/webrtc_overrides:webrtc_component", "//third_party/webrtc_overrides:webrtc_component",
"//ui/events:dom_keycode_converter",
] ]
} }
...@@ -36,7 +36,11 @@ source_set("unit_tests") { ...@@ -36,7 +36,11 @@ source_set("unit_tests") {
deps = [ deps = [
":notification", ":notification",
"//base",
"//base/test:test_support",
"//net", "//net",
"//net:test_support",
"//net/traffic_annotation:test_support",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
] ]
......
...@@ -10,7 +10,10 @@ source_set("ui") { ...@@ -10,7 +10,10 @@ source_set("ui") {
"fling_tracker.h", "fling_tracker.h",
] ]
deps = [ ":ui_manipulation" ] deps = [
":ui_manipulation",
"//base",
]
public_deps = [ public_deps = [
"//remoting/proto", "//remoting/proto",
...@@ -30,7 +33,7 @@ source_set("ui_manipulation") { ...@@ -30,7 +33,7 @@ source_set("ui_manipulation") {
"view_matrix.h", "view_matrix.h",
] ]
deps = [] deps = [ "//base" ]
public_deps = [ public_deps = [
"//remoting/proto", "//remoting/proto",
...@@ -50,6 +53,9 @@ source_set("unit_tests") { ...@@ -50,6 +53,9 @@ source_set("unit_tests") {
deps = [ deps = [
":ui", ":ui",
"//base",
"//base/test:test_support",
"//remoting/client/ui:ui_manipulation",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
] ]
......
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