From 22a0e55b88e62a5cf9af649b2c33024f7dc74fdf Mon Sep 17 00:00:00 2001 From: Taylor Cramer Date: Mon, 20 May 2024 17:29:32 +0000 Subject: [PATCH] *: Update Android.bp after GetAlignedSubspan move MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 9c7d879571717058f000a04109204a381aa3d4c1 moved some files around but didn't update the corresponding Android.bp files. Change-Id: Ib8c3a0d54a45f30486a992e8782fb30f947aab12 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/210518 Lint: Lint 🤖 Reviewed-by: Carlos Chinchilla Commit-Queue: Taylor Cramer Pigweed-Auto-Submit: Taylor Cramer --- pw_allocator/Android.bp | 1 - pw_bytes/Android.bp | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pw_allocator/Android.bp b/pw_allocator/Android.bp index c35b9a2c13..c9d1e2c66b 100644 --- a/pw_allocator/Android.bp +++ b/pw_allocator/Android.bp @@ -43,7 +43,6 @@ cc_library { srcs: [ "allocator.cc", "allocator_as_pool.cc", - "buffer.cc", "block.cc", "chunk_pool.cc", "deallocator.cc", diff --git a/pw_bytes/Android.bp b/pw_bytes/Android.bp index d3d34f8b40..9157331def 100644 --- a/pw_bytes/Android.bp +++ b/pw_bytes/Android.bp @@ -29,10 +29,11 @@ cc_library_static { ], host_supported: true, srcs: [ + "alignment.cc", // Errors with // "no member named 'contiguous_iterator_tag' in namespace 'std'" // Updating libc++ will fix this. - // "byte_builder.cc" + // "byte_builder.cc", ], static_libs: [ "pw_containers",