diff options
author | Jay Aliomer <aaliomer@google.com> | 2021-09-23 15:49:54 -0400 |
---|---|---|
committer | Dave Mankoff <mankoff@google.com> | 2021-10-12 19:06:27 +0000 |
commit | b9b436fe17802e1a73e44e27e4a53a5b35b63578 (patch) | |
tree | 4051cc19841f4fc87f3f9d65cf8b1887826afff9 | |
parent | bee6271909635fc3bd9c7d55d09a35e7707680f8 (diff) |
Added src and exclude_src to debuggable builds
Fixes: 200976245
Test: manually tested
Change-Id: I68b6230f30aa2c15e6a80010cd639ea453b4b29e
Merged-In: I68b6230f30aa2c15e6a80010cd639ea453b4b29e
(cherry picked from commit 85a8afa9e72feff6d804c5d0a0827db63cb55fb9)
-rw-r--r-- | android/variable.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 0dc5262c7..741d9aed5 100644 --- a/android/variable.go +++ b/android/variable.go @@ -101,6 +101,8 @@ type variableProperties struct { Keep_symbols *bool Keep_symbols_and_debug_frame *bool } + Srcs []string + Exclude_srcs []string } // eng is true for -eng builds, and can be used to turn on additionaly heavyweight debugging |