summaryrefslogtreecommitdiff
path: root/google/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'google/BUILD.gn')
-rw-r--r--google/BUILD.gn4
1 files changed, 2 insertions, 2 deletions
diff --git a/google/BUILD.gn b/google/BUILD.gn
index a628d2f..c29e892 100644
--- a/google/BUILD.gn
+++ b/google/BUILD.gn
@@ -28,10 +28,10 @@ if (build_with_chromium) {
"compression_utils.h",
]
deps = [
- ":compression_utils_portable",
"//base",
"//third_party/zlib",
]
+ public_deps = [ ":compression_utils_portable" ]
}
}
@@ -42,5 +42,5 @@ static_library("compression_utils_portable") {
"compression_utils_portable.cc",
"compression_utils_portable.h",
]
- deps = [ "//third_party/zlib" ]
+ public_deps = [ "//third_party/zlib" ]
}