summaryrefslogtreecommitdiff
path: root/libs/math/tests/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/math/tests/Android.bp')
-rw-r--r--libs/math/tests/Android.bp16
1 files changed, 16 insertions, 0 deletions
diff --git a/libs/math/tests/Android.bp b/libs/math/tests/Android.bp
index 0184f56dc4..14fb72af78 100644
--- a/libs/math/tests/Android.bp
+++ b/libs/math/tests/Android.bp
@@ -14,6 +14,15 @@
// limitations under the License.
//
+package {
+ // See: http://go/android-license-faq
+ // A large-scale-change added 'default_applicable_licenses' to import
+ // all of the 'license_kinds' from "frameworks_native_libs_math_license"
+ // to get the below license kinds:
+ // SPDX-license-identifier-Apache-2.0
+ default_applicable_licenses: ["frameworks_native_libs_math_license"],
+}
+
cc_test {
name: "vec_test",
srcs: ["vec_test.cpp"],
@@ -41,3 +50,10 @@ cc_test {
static_libs: ["libmath"],
cflags: ["-Wall", "-Werror"],
}
+
+cc_test {
+ name: "hashcombine_test",
+ srcs: ["hashcombine_test.cpp"],
+ static_libs: ["libmath"],
+ cflags: ["-Wall", "-Werror"],
+}