diff options
author | 2024-07-22 15:12:15 -0700 | |
---|---|---|
committer | 2024-07-22 15:12:15 -0700 | |
commit | 4ec75f112602b5a4ef5489b12bc45f27c18c410f (patch) | |
tree | e3849c4d48ad14a4c2bbed178de4521ca42fb107 | |
parent | 794127db5b35dafbf91779741c0a9eee6db6872a (diff) |
Enable Windows target for the headers library
Android Resources is going to start using the headers here
and it needs the host version for the aapt2 tool build
Flag: EXEMPT build change
Test: build
Change-Id: I15249961ec95b952ea95e816efa522566910f742
-rw-r--r-- | Android.bp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 2520a71968..4befb1b377 100644 --- a/Android.bp +++ b/Android.bp @@ -39,6 +39,11 @@ license { cc_library_headers { name: "native_headers", host_supported: true, + target: { + windows: { + enabled: true, + }, + }, export_include_dirs: [ "include/", ], |