Commit 36f0464a by Tim Van Patten Committed by Commit Bot

Target the "absl" component for component builds.

When performing a component build, we need to make sure our targets are accessing abseil from the component when is_component_build=true. Bug: chromium:1134776 Change-Id: Iaf5ee7176b4b8d84b3bafeaa259e476062a1e1dc Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2461454Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Tim Van Patten <timvp@google.com>
parent f8117992
...@@ -772,7 +772,7 @@ group("angle_abseil") { ...@@ -772,7 +772,7 @@ group("angle_abseil") {
if (angle_enable_abseil) { if (angle_enable_abseil) {
# When build_with_chromium=true we need to include "//third_party/abseil-cpp:absl" while # When build_with_chromium=true we need to include "//third_party/abseil-cpp:absl" while
# we can be more specific when building standalone ANGLE. # we can be more specific when building standalone ANGLE.
if (build_with_chromium) { if (build_with_chromium || is_component_build) {
public_deps = [ "$angle_abseil_cpp_dir:absl" ] public_deps = [ "$angle_abseil_cpp_dir:absl" ]
} else { } else {
public_deps = [ "$angle_abseil_cpp_dir/absl/container:flat_hash_map" ] public_deps = [ "$angle_abseil_cpp_dir/absl/container:flat_hash_map" ]
......
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