Commit 5106cc1e authored by S. Ganesh's avatar S. Ganesh Committed by Commit Bot

Fix gn check errors with //chrome/elevation_service/*.

Bug: 1055546
Change-Id: I61fb39ecf5778737cfd1535a05b94efe91317427
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070839Reviewed-by: default avatarSorin Jianu <sorin@chromium.org>
Commit-Queue: S. Ganesh <ganesh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#744144}
parent 4bc2c880
...@@ -48,6 +48,7 @@ executable("elevation_service") { ...@@ -48,6 +48,7 @@ executable("elevation_service") {
":version_resources", ":version_resources",
"//base", "//base",
"//build/win:default_exe_manifest", "//build/win:default_exe_manifest",
"//chrome/install_static:install_static_util",
"//chrome/install_static:primary_module", "//chrome/install_static:primary_module",
"//components/crx_file", "//components/crx_file",
"//third_party/zlib/google:zip", "//third_party/zlib/google:zip",
...@@ -57,15 +58,12 @@ executable("elevation_service") { ...@@ -57,15 +58,12 @@ executable("elevation_service") {
source_set("lib") { source_set("lib") {
visibility = [ ":*" ] visibility = [ ":*" ]
public = [
"elevated_recovery_impl.h",
"elevator.h",
"service_main.h",
]
sources = [ sources = [
"elevated_recovery_impl.cc", "elevated_recovery_impl.cc",
"elevated_recovery_impl.h",
"elevator.cc", "elevator.cc",
"elevator.h",
"service_main.h",
"service_main.cc", "service_main.cc",
] ]
...@@ -73,12 +71,13 @@ source_set("lib") { ...@@ -73,12 +71,13 @@ source_set("lib") {
configs -= [ "//build/config/win:winver" ] configs -= [ "//build/config/win:winver" ]
configs += [ ":winver" ] configs += [ ":winver" ]
public_deps = [ deps = [
":elevation_service_idl", ":elevation_service_idl",
"//base", "//base",
"//chrome/install_static:install_static_util",
"//components/crx_file:crx_file",
"//third_party/zlib/google:zip",
] ]
deps = [ "//chrome/install_static:install_static_util" ]
} }
process_version_rc_template("version_resources") { process_version_rc_template("version_resources") {
...@@ -109,6 +108,7 @@ test("elevation_service_unittests") { ...@@ -109,6 +108,7 @@ test("elevation_service_unittests") {
":lib", ":lib",
"//base", "//base",
"//base/test:test_support", "//base/test:test_support",
"//chrome/elevation_service:elevation_service_idl",
"//chrome/install_static:install_static_util", "//chrome/install_static:install_static_util",
"//chrome/install_static/test:test_support", "//chrome/install_static/test:test_support",
"//components/crx_file", "//components/crx_file",
......
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