0

Fix some 'gn check' errors in ppapi/proxy

Bug: 1158995
Change-Id: I6592dd835e83b37a40827fe5399414931ca7d0c6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2983214
Commit-Queue: Andrew Shulaev <ddrone@google.com>
Commit-Queue: Bill Budge <bbudge@chromium.org>
Auto-Submit: Andrew Shulaev <ddrone@google.com>
Reviewed-by: Bill Budge <bbudge@chromium.org>
Reviewed-by: Erik Staab <estaab@chromium.org>
Cr-Commit-Position: refs/heads/master@{#896070}
This commit is contained in:
Andrew Shulaev
2021-06-25 15:48:15 +00:00
committed by Chromium LUCI CQ
parent 115df8a02a
commit c8f936e7af
2 changed files with 7 additions and 1 deletions
.gn
ppapi/proxy

3
.gn

@ -67,7 +67,8 @@ no_check_targets = [
"//extensions:*", # 75 errors "//extensions:*", # 75 errors
"//headless:*", # 167 errors "//headless:*", # 167 errors
"//ppapi/native_client/src/untrusted/pnacl_irt_shim:*", # 197 errors "//ppapi/native_client/src/untrusted/pnacl_irt_shim:*", # 197 errors
"//ppapi/proxy:*", # 31 errors "//ppapi/proxy:ipc_sources", # 13 errors
"//ppapi/proxy:proxy", # 5 errors
"//ppapi/thunk:*", # 1071 errors "//ppapi/thunk:*", # 1071 errors
"//remoting/host/mac:*", # 49 errors "//remoting/host/mac:*", # 49 errors
"//remoting/host/security_key:*", # 68 errors "//remoting/host/security_key:*", # 68 errors

@ -245,6 +245,8 @@ component("proxy") {
"//base", "//base",
"//device/base/synchronization", "//device/base/synchronization",
"//device/gamepad/public/cpp:shared_with_blink", "//device/gamepad/public/cpp:shared_with_blink",
"//gpu/command_buffer/client:client",
"//gpu/command_buffer/client:gles2_cmd_helper",
"//gpu/command_buffer/client:gles2_implementation", "//gpu/command_buffer/client:gles2_implementation",
"//gpu/command_buffer/common", "//gpu/command_buffer/common",
"//gpu/ipc/common:command_buffer_traits", "//gpu/ipc/common:command_buffer_traits",
@ -276,6 +278,8 @@ source_set("common") {
"tcp_socket_resource_constants.h", "tcp_socket_resource_constants.h",
"udp_socket_resource_constants.h", "udp_socket_resource_constants.h",
] ]
deps = [ "//base:base" ]
} }
group("ipc") { group("ipc") {
@ -341,6 +345,7 @@ static_library("test_support") {
"//ipc:test_support", "//ipc:test_support",
"//ppapi/proxy", "//ppapi/proxy",
"//ppapi/shared_impl", "//ppapi/shared_impl",
"//ppapi/shared_impl:test_support",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
] ]