1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5android_app { 6 name: "Iwlan", 7 manifest: "AndroidManifest.xml", 8 srcs: [ 9 "src/**/*.java", 10 "src/**/I*.aidl", 11 ], 12 resource_dirs: [ 13 "res", 14 ], 15 static_libs: [ 16 "android-support-annotations", 17 ], 18 19 libs: [ 20 "android.net.ipsec.ike.stubs.system", 21 "auto_value_annotations", 22 "framework-annotations-lib", 23 "framework-connectivity", 24 "framework-wifi" 25 ], 26 27 plugins: ["auto_value_plugin"], 28 29 required: ["privapp-permlist_com.google.android.iwlan.xml"], 30 31 owner: "google", 32 product_specific: true, 33 privileged: true, 34 certificate: "platform", 35 sdk_version: "module_current", 36} 37 38prebuilt_etc { 39 name: "privapp-permlist_com.google.android.iwlan.xml", 40 sub_dir: "permissions", 41 src: "com.google.android.iwlan.xml", 42 filename_from_src: true, 43 product_specific: true, 44} 45 46android_test { 47 name: "IwlanTests", 48 49 manifest: "test/AndroidManifest.xml", 50 51 srcs: [ 52 "src/**/*.java", 53 "test/**/*.java", 54 ], 55 56 platform_apis: true, 57 58 certificate: "platform", 59 60 test_suites: ["device-tests"], 61 62 compile_multilib: "both", 63 64 libs: [ 65 "android.net.ipsec.ike.stubs.system", 66 "auto_value_annotations", 67 ], 68 69 plugins: ["auto_value_plugin"], 70 71 static_libs: [ 72 "android-support-annotations", 73 "androidx.test.rules", 74 "mockito-target-inline-minus-junit4", 75 "mockito-target-extended-minus-junit4", 76 ], 77 78 jni_libs: [ 79 "libdexmakerjvmtiagent", 80 "libstaticjvmtiagent", 81 "libmultiplejvmtiagentsinterferenceagent", 82 ], 83} 84