aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrabal Singh <prabalsingh@google.com>2023-10-25 07:50:53 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-10-25 07:50:53 +0000
commitb740c605a1ab66cce60f221554a2421853c9bb0e (patch)
tree7bdfcdb28fb287ebb90706a22a2d92e92caf242b
parent1f2e0972fe2e3d1d3bed53a43c55a76079fd749e (diff)
parent283f983a7b0848ff31480c101b7e5976926a335a (diff)
downloadanonymous-counting-tokens-b740c605a1ab66cce60f221554a2421853c9bb0e.tar.gz
Merge "Create ACTproto filegroup & define min_sdk_version" into udc-mainline-prod
-rw-r--r--Android.bp33
-rw-r--r--act/transcript.proto34
2 files changed, 58 insertions, 9 deletions
diff --git a/Android.bp b/Android.bp
index e1306d0..06e83b2 100644
--- a/Android.bp
+++ b/Android.bp
@@ -10,14 +10,27 @@ license {
license_text: ["LICENSE"],
}
+filegroup {
+ name: "act-proto",
+ srcs: [
+ "**/*.proto",
+ "act/act.proto",
+ ],
+ visibility: ["//packages/modules/AdServices:__subpackages__"],
+ path: "act",
+}
+
cc_defaults {
name: "libact_defaults",
host_supported: true,
}
-cc_library {
+cc_library_static {
name: "libact",
defaults: ["libact_defaults"],
+ min_sdk_version: "30",
+ sdk_version: "current",
+ stl: "libc++_static",
srcs: [
"act/act.proto",
"act/act_v0/act_v0.cc",
@@ -27,13 +40,13 @@ cc_library {
shared_libs: [
"libcrypto",
"liblog",
- "libprotobuf-cpp-lite",
],
- static_libs: [
+ whole_static_libs: [
"libpjc_crypto",
"libpjc_third_party_libabsl",
],
cflags: ["-Wno-unused-parameter"],
+ export_include_dirs: ["."],
proto: {
type: "lite",
export_proto_headers: true,
@@ -48,13 +61,15 @@ cc_library {
integer_overflow: true,
misc_undefined: ["bounds"],
},
+ apex_available: ["com.android.adservices", "com.android.extservices",],
+ visibility: ["//packages/modules/AdServices/adservices/service-core"],
target: {
- android: {
- sanitize: {
- cfi: true,
- },
- },
- },
+ android: {
+ whole_static_libs: [
+ "libprotobuf-cpp-lite-ndk",
+ ]
+ }
+ }
}
cc_test {
diff --git a/act/transcript.proto b/act/transcript.proto
new file mode 100644
index 0000000..957335d
--- /dev/null
+++ b/act/transcript.proto
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2023 Google LLC.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+syntax = "proto3";
+
+package private_join_and_compute.anonymous_counting_tokens;
+
+import "act/act.proto";
+
+option java_multiple_files = true;
+
+message Transcript {
+ SchemeParameters scheme_parameters = 1;
+ ServerParameters server_parameters = 2;
+ ClientParameters client_parameters = 3;
+ repeated string messages = 4;
+ repeated bytes fingerprints = 5;
+ TokensRequest tokens_request = 6;
+ TokensRequestPrivateState tokens_request_private_state = 7;
+ TokensResponse tokens_response = 8;
+ repeated Token tokens = 9;
+}