gn2bp: export //crypto:crypto headers from //net:net
I wonder if it would be better to just specifically export the specific
generated headers, but figured that that approach would be more brittle.
Collisions are unlikely anyways as includes are still namespaced.
Test: //components/cronet/android:cronet
Change-Id: I448cd26d95881221211ffe909361fcb6fb235e52
diff --git a/tools/gn2bp/gen_android_bp b/tools/gn2bp/gen_android_bp
index 8237cdf..943ba86 100755
--- a/tools/gn2bp/gen_android_bp
+++ b/tools/gn2bp/gen_android_bp
@@ -109,7 +109,10 @@
additional_args = {
# TODO: remove if not needed.
'cronet_aml_net_net': [
- ('export_static_lib_headers', {'cronet_aml_net_third_party_quiche_quiche'}),
+ ('export_static_lib_headers', {
+ 'cronet_aml_net_third_party_quiche_quiche',
+ 'cronet_aml_crypto_crypto',
+ }),
]
}