| Index: third_party/cld_2/BUILD.gn
|
| diff --git a/third_party/cld_2/BUILD.gn b/third_party/cld_2/BUILD.gn
|
| index 6d41977b2b945f46f7bf50d78e0a113704539a8d..b64440c0069cf226835603ce1ebbf465fc156931 100644
|
| --- a/third_party/cld_2/BUILD.gn
|
| +++ b/third_party/cld_2/BUILD.gn
|
| @@ -84,11 +84,11 @@ source_set("cld_2") {
|
| }
|
|
|
| source_set("cld2_platform_impl") {
|
| - deps = []
|
| + public_deps = []
|
| if (cld2_platform_support == "static") {
|
| - deps += [ ":cld2_static" ]
|
| + public_deps += [ ":cld2_static" ]
|
| } else if (cld2_platform_support == "dynamic") {
|
| - deps += [ ":cld2_dynamic" ]
|
| + public_deps += [ ":cld2_dynamic" ]
|
| }
|
| }
|
|
|
| @@ -109,7 +109,7 @@ static_library("cld2_static") {
|
| "src/public",
|
| ]
|
|
|
| - deps = [
|
| + public_deps = [
|
| ":cld_2",
|
| ":cld2_data",
|
| ]
|
|
|