1// Copyright 2023 Google, LLC 2 3package { 4 // See: http://go/android-license-faq 5 default_applicable_licenses: [ 6 "Android-Apache-2.0", 7 ], 8} 9 10// setup nearby connection test 11android_test_import { 12 name: "nearby_snippet", 13 owner: "google", 14 apk: "nearby_snippet.apk", 15 preprocessed: true, 16 presigned: true, 17 test_suites: [], 18} 19 20// setup the 2nd nearby connection test, as 21// one client only allow to set up 1 connection. 22android_test_import { 23 name: "nearby_snippet_2", 24 owner: "google", 25 apk: "nearby_snippet_2.apk", 26 preprocessed: true, 27 presigned: true, 28 test_suites: [], 29} 30 31// setup the 3P API nearby connection test, as 32// the client will call nearby connections 3P APIs. 33android_test_import { 34 name: "nearby_snippet_3p", 35 owner: "google", 36 apk: "nearby_snippet_3p.apk", 37 preprocessed: true, 38 presigned: true, 39 test_suites: [], 40} 41