├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── scorecard.yaml ├── .gitignore ├── .hadolint.yaml ├── .markdown-link-check.json ├── .markdownlint-cli2.yaml ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.yaml ├── .pylintrc ├── BUILD ├── CHANGELOG.md ├── CPPLINT.cfg ├── LICENSE ├── README.md ├── WORKSPACE ├── api ├── BUILD ├── README.md ├── attestation.proto ├── bidding_auction_servers.proto ├── buf.lock ├── buf.yaml ├── k_anon_query.proto └── udf │ ├── BUILD │ └── generate_bid.proto ├── config.bzl ├── docs ├── building_artifacts.md ├── contributing.md └── playbook │ ├── index.md │ └── template.md ├── production ├── deploy │ ├── aws │ │ └── terraform │ │ │ ├── environment │ │ │ └── demo │ │ │ │ ├── README.md │ │ │ │ ├── buyer │ │ │ │ ├── buyer.tf │ │ │ │ └── terraform.tf │ │ │ │ ├── buyer_multi_region │ │ │ │ ├── buyer.tf │ │ │ │ └── terraform.tf │ │ │ │ └── seller │ │ │ │ ├── seller.tf │ │ │ │ └── terraform.tf │ │ │ ├── modules │ │ │ ├── buyer │ │ │ │ ├── service.tf │ │ │ │ └── service_vars.tf │ │ │ └── seller │ │ │ │ ├── service.tf │ │ │ │ └── service_vars.tf │ │ │ └── services │ │ │ ├── app_mesh │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── autoscaling │ │ │ ├── instance_init_script.tftpl │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── backend_mesh_service │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── backend_services │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── dashboards │ │ │ ├── buyer_dashboard │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── inference_dashboard │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── k_anon_dashboard │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── roma_dashboard │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ └── seller_dashboard │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── frontend_mesh_service │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── iam_role_policies │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ │ ├── iam_roles │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── load_balancing │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── log_based_metric │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ │ ├── networking │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── security_group_rules │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ │ └── security_groups │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── azure │ │ ├── helm │ │ │ ├── bidding-auction-servers-chart │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── backend-deployment.yaml │ │ │ │ │ ├── backend-horizontal-pod-autoscaling.yaml │ │ │ │ │ ├── backend-service.yaml │ │ │ │ │ ├── frontend-deployment.yaml │ │ │ │ │ ├── frontend-horizontal-pod-autoscaling.yaml │ │ │ │ │ └── frontend-service.yaml │ │ │ │ └── values.yaml │ │ │ ├── byoc-tls-chart │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── gateway.yaml │ │ │ │ │ ├── grpc-route.yaml │ │ │ │ │ └── secret_provider_class.yaml │ │ │ │ └── values.yaml.tftpl │ │ │ ├── otel-collector-chart │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── NOTES.txt │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── prometheus_configmap.yaml │ │ │ │ │ └── service.yaml │ │ │ │ └── values.yaml │ │ │ ├── parc-chart │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── tls-chart │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── certificate.yaml │ │ │ │ ├── cluster-issuer.yaml │ │ │ │ ├── gateway.yaml │ │ │ │ ├── grpc-route.yaml │ │ │ │ └── health_check_policy.yaml │ │ │ │ └── values.yaml.tftpl │ │ └── terraform │ │ │ ├── components │ │ │ ├── aks │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── bidding-auction │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── dashboards │ │ │ │ ├── buyer.tftpl │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── seller.tftpl │ │ │ │ └── variables.tf │ │ │ ├── dns │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ ├── global_load_balancing │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── iam │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── networking │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── otel_collector │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── parc │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── prometheus │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── regional_load_balancing │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── resource_group │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── tls │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ └── virtual_node │ │ │ │ ├── main.tf │ │ │ │ ├── values.yaml │ │ │ │ └── variables.tf │ │ │ ├── environment │ │ │ └── demo │ │ │ │ ├── README.md │ │ │ │ ├── buyer │ │ │ │ ├── buyer1.tf │ │ │ │ ├── buyer1_app_parameters.json │ │ │ │ ├── buyer1_infrastructure_parameters.auto.tfvars.json │ │ │ │ └── buyer1_vars.tf │ │ │ │ ├── project_setup_utils │ │ │ │ ├── main.tf │ │ │ │ ├── project_setup_utils_parameters.auto.tfvars.json │ │ │ │ ├── terraform.tf │ │ │ │ ├── tls_akv_manager │ │ │ │ │ ├── main.tf │ │ │ │ │ └── variables.tf │ │ │ │ └── variables.tf │ │ │ │ └── seller │ │ │ │ ├── seller1.tf │ │ │ │ ├── seller1_app_parameters.json │ │ │ │ ├── seller1_infrastructure_parameters.auto.tfvars.json │ │ │ │ └── seller1_vars.tf │ │ │ └── modules │ │ │ ├── buyer │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ └── service_vars.tf │ │ │ └── seller │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ └── service_vars.tf │ └── gcp │ │ └── terraform │ │ ├── environment │ │ └── demo │ │ │ ├── README.md │ │ │ ├── buyer │ │ │ ├── buyer.tf │ │ │ ├── buyer_outputs.tf │ │ │ └── terraform.tf │ │ │ ├── project_setup_utils │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── main.tf │ │ │ ├── domain │ │ │ │ └── main.tf │ │ │ ├── internal_tls │ │ │ │ └── main.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── service_account │ │ │ │ └── main.tf │ │ │ └── variables.tf │ │ │ └── seller │ │ │ ├── seller.tf │ │ │ ├── seller_outputs.tf │ │ │ └── terraform.tf │ │ ├── modules │ │ ├── buyer │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ └── service_vars.tf │ │ ├── secrets │ │ │ └── secrets.tf │ │ └── seller │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ └── service_vars.tf │ │ └── services │ │ ├── autoscaling │ │ ├── collector_startup.tftpl │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── dashboards │ │ ├── buyer_dashboard │ │ │ ├── dashboard.tftpl │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── inference_dashboard │ │ │ ├── dashboard.tftpl │ │ │ ├── main.tf │ │ │ └── variable.tf │ │ ├── k_anon_dashboard │ │ │ ├── dashboard.tftpl │ │ │ ├── main.tf │ │ │ └── variable.tf │ │ ├── roma_dashboard │ │ │ ├── dashboard.tftpl │ │ │ ├── main.tf │ │ │ └── variable.tf │ │ └── seller_dashboard │ │ │ ├── dashboard.tftpl │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── frontend_load_balancing │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── load_balancing │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── log_based_metric │ │ ├── main.tf │ │ └── variables.tf │ │ ├── networking │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ └── security │ │ ├── main.tf │ │ └── variables.tf └── packaging │ ├── .bazelrc │ ├── README.md │ ├── aws │ ├── auction_service │ │ ├── BUILD │ │ └── test │ │ │ ├── commands.yaml │ │ │ └── structure.yaml │ ├── bidding_service │ │ ├── BUILD │ │ └── test │ │ │ ├── commands.yaml │ │ │ └── structure.yaml │ ├── build_and_test │ ├── buyer_frontend_service │ │ ├── BUILD │ │ └── test │ │ │ ├── commands.yaml │ │ │ └── structure.yaml │ ├── codebuild │ │ ├── README.md │ │ ├── buildspec.yaml │ │ └── sync_bidding_auction_repo.yaml │ ├── common │ │ └── ami │ │ │ ├── BUILD │ │ │ ├── configure_and_start │ │ │ ├── debug │ │ │ └── otel_collector_config.yaml │ │ │ ├── envoy.yaml │ │ │ ├── envoy_networking.sh │ │ │ ├── fakekv.pkr.hcl │ │ │ ├── hc.bash │ │ │ ├── health.proto │ │ │ ├── image.pkr.hcl │ │ │ ├── otel_collector_config.yaml │ │ │ ├── setup.sh │ │ │ └── vsockproxy.service │ └── seller_frontend_service │ │ ├── BUILD │ │ └── test │ │ ├── commands.yaml │ │ └── structure.yaml │ ├── azure │ ├── auction_service │ │ ├── BUILD │ │ ├── bin │ │ │ └── init_server_basic │ │ └── test │ ├── bidding_service │ │ ├── BUILD │ │ ├── bin │ │ │ └── init_server_basic │ │ └── test │ ├── buyer_frontend_service │ │ ├── BUILD │ │ ├── bin │ │ │ └── init_server_basic │ │ └── test │ ├── lib_azure_artifacts.sh │ └── seller_frontend_service │ │ ├── BUILD │ │ ├── bin │ │ ├── envoy.yaml │ │ └── init_server_basic │ │ └── test │ ├── build_and_test_all_in_docker │ └── gcp │ ├── auction_service │ ├── BUILD │ ├── bin │ │ └── init_server_basic │ └── test │ │ ├── commands.yaml │ │ └── structure.yaml │ ├── bidding_service │ ├── BUILD │ ├── bin │ │ └── init_server_basic │ └── test │ │ ├── commands.yaml │ │ └── structure.yaml │ ├── buyer_frontend_service │ ├── BUILD │ ├── bin │ │ └── init_server_basic │ └── test │ │ ├── commands.yaml │ │ └── structure.yaml │ ├── cloud_build │ ├── Dockerfile │ ├── README.md │ ├── cloud_build.auto.tfvars │ ├── cloud_build.tf │ ├── cloudbuild.yaml │ ├── sync_bidding_auction_repo.yaml │ └── terraform.tf │ ├── lib_gcp_artifacts.sh │ └── seller_frontend_service │ ├── BUILD │ ├── bin │ ├── envoy.yaml │ └── init_server_basic │ └── test │ ├── commands.yaml │ └── structure.yaml ├── services ├── auction_service │ ├── BUILD │ ├── README.md │ ├── auction_constants.h │ ├── auction_main.cc │ ├── auction_service.cc │ ├── auction_service.h │ ├── auction_service_integration_test.cc │ ├── auction_service_integration_test_util.cc │ ├── auction_service_integration_test_util.h │ ├── auction_service_reporting_integration_test.cc │ ├── auction_service_test.cc │ ├── auction_test_constants.h │ ├── benchmarking │ │ ├── BUILD │ │ ├── browser_signals_benchmark.cc │ │ ├── score_ads_benchmarking_logger.h │ │ ├── score_ads_no_op_logger.h │ │ └── score_ads_reactor_benchmarks.cc │ ├── code_wrapper │ │ ├── BUILD │ │ ├── buyer_reporting_test_constants.h │ │ ├── buyer_reporting_udf_wrapper.cc │ │ ├── buyer_reporting_udf_wrapper.h │ │ ├── buyer_reporting_udf_wrapper_test.cc │ │ ├── js │ │ │ ├── BUILD │ │ │ ├── private_aggregation_wrapper.js │ │ │ └── private_aggregation_wrapper_test.js │ │ ├── private_aggregation_wrapper.h │ │ ├── seller_code_wrapper.cc │ │ ├── seller_code_wrapper.h │ │ ├── seller_code_wrapper_test.cc │ │ ├── seller_code_wrapper_test_constants.h │ │ ├── seller_udf_wrapper.cc │ │ ├── seller_udf_wrapper.h │ │ ├── seller_udf_wrapper_test.cc │ │ └── seller_udf_wrapper_test_constants.h │ ├── data │ │ ├── BUILD │ │ └── runtime_config.h │ ├── private_aggregation │ │ ├── BUILD │ │ ├── private_aggregation_manager.cc │ │ ├── private_aggregation_manager.h │ │ ├── private_aggregation_manager_test.cc │ │ ├── private_aggregation_manager_test_util.cc │ │ └── private_aggregation_manager_test_util.h │ ├── reporting │ │ ├── BUILD │ │ ├── buyer │ │ │ ├── BUILD │ │ │ ├── buyer_reporting_helper.cc │ │ │ ├── buyer_reporting_helper.h │ │ │ ├── buyer_reporting_helper_test.cc │ │ │ ├── pa_buyer_reporting_manager.cc │ │ │ ├── pa_buyer_reporting_manager.h │ │ │ ├── pa_buyer_reporting_manager_test.cc │ │ │ ├── pas_buyer_reporting_manager.cc │ │ │ ├── pas_buyer_reporting_manager.h │ │ │ └── pas_buyer_reporting_manager_test.cc │ │ ├── noiser_and_bucketer.cc │ │ ├── noiser_and_bucketer.h │ │ ├── noiser_and_bucketer_test.cc │ │ ├── reporting_helper.cc │ │ ├── reporting_helper.h │ │ ├── reporting_helper_test.cc │ │ ├── reporting_response.h │ │ ├── reporting_test_util.cc │ │ ├── reporting_test_util.h │ │ └── seller │ │ │ ├── BUILD │ │ │ ├── component_seller_reporting_manager.cc │ │ │ ├── component_seller_reporting_manager.h │ │ │ ├── component_seller_reporting_manager_test.cc │ │ │ ├── seller_reporting_manager.cc │ │ │ ├── seller_reporting_manager.h │ │ │ ├── seller_reporting_manager_test.cc │ │ │ ├── top_level_seller_reporting_manager.cc │ │ │ ├── top_level_seller_reporting_manager.h │ │ │ └── top_level_seller_reporting_manager_test.cc │ ├── runtime_flags.h │ ├── score_ads_reactor.cc │ ├── score_ads_reactor.h │ ├── score_ads_reactor_component_auction_test.cc │ ├── score_ads_reactor_test.cc │ ├── score_ads_reactor_test_util.cc │ ├── score_ads_reactor_test_util.h │ ├── score_ads_reactor_top_level_auction_test.cc │ ├── udf_fetcher │ │ ├── BUILD │ │ ├── adtech_code_version_util.cc │ │ ├── adtech_code_version_util.h │ │ ├── adtech_code_version_util_test.cc │ │ ├── auction_code_fetch_config.proto │ │ ├── buyer_reporting_fetcher.cc │ │ ├── buyer_reporting_fetcher.h │ │ ├── buyer_reporting_udf_fetch_manager.cc │ │ ├── buyer_reporting_udf_fetch_manager.h │ │ ├── buyer_reporting_udf_fetch_manager_test.cc │ │ ├── seller_udf_fetch_manager.cc │ │ ├── seller_udf_fetch_manager.h │ │ ├── seller_udf_fetch_manager_test.cc │ │ └── testScoreAds.js │ └── utils │ │ ├── BUILD │ │ ├── proto_utils.cc │ │ ├── proto_utils.h │ │ └── proto_utils_test.cc ├── bidding_service │ ├── BUILD │ ├── README.md │ ├── base_generate_bids_reactor.h │ ├── benchmarking │ │ ├── BUILD │ │ ├── bidding_benchmarking_logger.h │ │ ├── bidding_no_op_logger.h │ │ ├── browser_signals_benchmark.cc │ │ ├── generate_bids_binary_reactor_benchmarks.cc │ │ ├── generate_bids_reactor_benchmarks.cc │ │ └── generate_bids_reactor_benchmarks_util.h │ ├── bidding_code_fetch_config.proto │ ├── bidding_main.cc │ ├── bidding_service.cc │ ├── bidding_service.h │ ├── bidding_service_factories.h │ ├── bidding_service_integration_test.cc │ ├── bidding_service_test.cc │ ├── bidding_v8_constants.h │ ├── buyer_code_fetch_manager.cc │ ├── buyer_code_fetch_manager.h │ ├── buyer_code_fetch_manager_test.cc │ ├── byob │ │ ├── BUILD │ │ ├── buyer_code_fetch_manager_byob.cc │ │ ├── buyer_code_fetch_manager_byob.h │ │ ├── buyer_code_fetch_manager_byob_test.cc │ │ ├── byob_batching_config.proto │ │ ├── generate_bid_byob_dispatch_client.cc │ │ ├── generate_bid_byob_dispatch_client.h │ │ └── proto_utils.h │ ├── cddl_spec_cache.cc │ ├── cddl_spec_cache.h │ ├── cddl_spec_cache_test.cc │ ├── code_wrapper │ │ ├── BUILD │ │ ├── buyer_code_wrapper.cc │ │ ├── buyer_code_wrapper.h │ │ ├── buyer_code_wrapper_test.cc │ │ ├── buyer_code_wrapper_test_constants.h │ │ ├── js │ │ │ ├── BUILD │ │ │ ├── bidding_private_aggregation_util.js │ │ │ ├── bidding_private_aggregation_util_externs.js │ │ │ ├── bidding_private_aggregation_util_test.js │ │ │ ├── private_aggregation_wrapper.js │ │ │ └── private_aggregation_wrapper_test.js │ │ └── private_aggregation_wrapper.h │ ├── data │ │ ├── BUILD │ │ └── runtime_config.h │ ├── egress_cddl_spec │ │ ├── 1.0.0 │ │ └── BUILD │ ├── egress_features │ │ ├── BUILD │ │ ├── adtech_schema_fetcher.cc │ │ ├── adtech_schema_fetcher.h │ │ ├── adtech_schema_fetcher_test.cc │ │ ├── boolean_feature.cc │ │ ├── boolean_feature.h │ │ ├── boolean_feature_test.cc │ │ ├── bucket_feature.cc │ │ ├── bucket_feature.h │ │ ├── bucket_feature_test.cc │ │ ├── egress_feature.cc │ │ ├── egress_feature.h │ │ ├── egress_schema_bucket_fetcher.cc │ │ ├── egress_schema_bucket_fetcher.h │ │ ├── egress_schema_bucket_fetcher_cpio_test.cc │ │ ├── egress_schema_bucket_fetcher_parc_test.cc │ │ ├── egress_schema_fetch_manager.cc │ │ ├── egress_schema_fetch_manager.h │ │ ├── egress_schema_fetch_manager_test.cc │ │ ├── feature_factory.cc │ │ ├── feature_factory.h │ │ ├── feature_factory_test.cc │ │ ├── histogram_feature.cc │ │ ├── histogram_feature.h │ │ ├── histogram_feature_test.cc │ │ ├── signed_int_feature.cc │ │ ├── signed_int_feature.h │ │ ├── signed_int_feature_test.cc │ │ ├── unsigned_int_feature.cc │ │ ├── unsigned_int_feature.h │ │ └── unsigned_int_feature_test.cc │ ├── egress_schema_cache.cc │ ├── egress_schema_cache.h │ ├── egress_schema_cache_test.cc │ ├── egress_schema_fetch_config.proto │ ├── generate_bids_binary_reactor.cc │ ├── generate_bids_binary_reactor.h │ ├── generate_bids_binary_reactor_test.cc │ ├── generate_bids_reactor.cc │ ├── generate_bids_reactor.h │ ├── generate_bids_reactor_test.cc │ ├── generate_bids_reactor_test_utils.cc │ ├── generate_bids_reactor_test_utils.h │ ├── inference │ │ ├── BUILD │ │ ├── inference_flags.cc │ │ ├── inference_flags.h │ │ ├── inference_utils.cc │ │ ├── inference_utils.h │ │ ├── inference_utils_test.cc │ │ ├── model_fetcher_metric.h │ │ ├── model_fetcher_metric_test.cc │ │ ├── periodic_model_fetcher.cc │ │ ├── periodic_model_fetcher.h │ │ └── periodic_model_fetcher_test.cc │ ├── protected_app_signals_generate_bids_binary_reactor.cc │ ├── protected_app_signals_generate_bids_binary_reactor.h │ ├── protected_app_signals_generate_bids_reactor.cc │ ├── protected_app_signals_generate_bids_reactor.h │ ├── protected_app_signals_generate_bids_reactor_test.cc │ ├── runtime_flags.h │ └── utils │ │ ├── BUILD │ │ ├── browser_signals_util.cc │ │ ├── browser_signals_util.h │ │ ├── browser_signals_util_test.cc │ │ ├── egress.cc │ │ ├── egress.h │ │ ├── egress_test.cc │ │ ├── validation.cc │ │ ├── validation.h │ │ └── validation_test.cc ├── buyer_frontend_service │ ├── BUILD │ ├── README.md │ ├── buyer_frontend_main.cc │ ├── buyer_frontend_service.cc │ ├── buyer_frontend_service.h │ ├── buyer_frontend_service_test.cc │ ├── data │ │ ├── BUILD │ │ ├── bidding_signals.h │ │ └── get_bids_config.h │ ├── get_bids_unary_reactor.cc │ ├── get_bids_unary_reactor.h │ ├── get_bids_unary_reactor_test.cc │ ├── kv_buyer_signals_adapter.cc │ ├── kv_buyer_signals_adapter.h │ ├── kv_buyer_signals_adapter_test.cc │ ├── providers │ │ ├── BUILD │ │ ├── bidding_signals_async_provider.h │ │ ├── http_bidding_signals_async_provider.cc │ │ ├── http_bidding_signals_async_provider.h │ │ └── http_bidding_signals_async_provider_test.cc │ ├── runtime_flags.h │ └── util │ │ ├── BUILD │ │ ├── bidding_signals.cc │ │ ├── bidding_signals.h │ │ ├── bidding_signals_test.cc │ │ ├── buyer_frontend_test_utils.cc │ │ ├── buyer_frontend_test_utils.h │ │ ├── proto_factory.cc │ │ ├── proto_factory.h │ │ └── proto_factory_test.cc ├── common │ ├── BUILD │ ├── aliases.h │ ├── attestation │ │ ├── BUILD │ │ ├── adtech_enrollment_cache.cc │ │ ├── adtech_enrollment_cache.h │ │ ├── adtech_enrollment_cache_test.cc │ │ ├── adtech_enrollment_fetcher.cc │ │ ├── adtech_enrollment_fetcher.h │ │ ├── adtech_enrollment_fetcher_test.cc │ │ ├── attestation_util.h │ │ └── attestation_util_test.cc │ ├── blob_fetch │ │ ├── BUILD │ │ ├── blob_fetcher.cc │ │ ├── blob_fetcher.h │ │ ├── blob_fetcher_base.h │ │ ├── blob_fetcher_cpio.cc │ │ ├── blob_fetcher_cpio_test.cc │ │ ├── blob_fetcher_mock.h │ │ ├── blob_fetcher_parc.cc │ │ ├── blob_fetcher_parc_test.cc │ │ └── fetch_mode.proto │ ├── blob_storage_client │ │ ├── BUILD │ │ ├── blob_storage_client.h │ │ ├── blob_storage_client_cpio.cc │ │ ├── blob_storage_client_cpio.h │ │ ├── blob_storage_client_cpio_test.cc │ │ ├── blob_storage_client_cpio_utils.cc │ │ ├── blob_storage_client_cpio_utils.h │ │ ├── blob_storage_client_parc.cc │ │ ├── blob_storage_client_parc.h │ │ ├── blob_storage_client_parc_test.cc │ │ ├── blob_storage_client_parc_utils.cc │ │ └── blob_storage_client_parc_utils.h │ ├── cache │ │ ├── BUILD │ │ ├── cache.h │ │ ├── cache_benchmarks.cc │ │ ├── cache_test.cc │ │ ├── doubly_linked_list.h │ │ └── doubly_linked_list_test.cc │ ├── chaffing │ │ ├── BUILD │ │ ├── mock_moving_median.h │ │ ├── mock_moving_median_manager.h │ │ ├── moving_median.cc │ │ ├── moving_median.h │ │ ├── moving_median_manager.cc │ │ ├── moving_median_manager.h │ │ ├── moving_median_test.cc │ │ ├── transcoding_utils.h │ │ └── transcoding_utils_test.cc │ ├── clients │ │ ├── BUILD │ │ ├── async_client.h │ │ ├── async_grpc │ │ │ ├── BUILD │ │ │ ├── bidding_async_grpc_client_stub_test.h │ │ │ ├── default_async_grpc_client.cc │ │ │ ├── default_async_grpc_client.h │ │ │ ├── default_async_grpc_client_stub_test.h │ │ │ ├── default_async_grpc_client_test.cc │ │ │ ├── default_raw_async_grpc_client_stub_test.h │ │ │ ├── grpc_client_utils.h │ │ │ └── request_config.h │ │ ├── auction_server │ │ │ ├── BUILD │ │ │ ├── scoring_async_client.cc │ │ │ ├── scoring_async_client.h │ │ │ ├── scoring_async_client_test.cc │ │ │ └── scoring_async_grpc_client_stub_test.cc │ │ ├── bidding_server │ │ │ ├── BUILD │ │ │ ├── bidding_async_client.cc │ │ │ ├── bidding_async_client.h │ │ │ └── bidding_async_grpc_client_stub_test.cc │ │ ├── buyer_frontend_server │ │ │ ├── BUILD │ │ │ ├── buyer_frontend_async_client.cc │ │ │ ├── buyer_frontend_async_client.h │ │ │ ├── buyer_frontend_async_client_factory.cc │ │ │ ├── buyer_frontend_async_client_factory.h │ │ │ ├── buyer_frontend_async_client_factory_test.cc │ │ │ └── buyer_frontend_async_grpc_client_stub_test.cc │ │ ├── cancellable_grpc_context_manager.h │ │ ├── cancellable_grpc_context_manager_test.cc │ │ ├── client_factory.h │ │ ├── client_params.h │ │ ├── client_params_test.cc │ │ ├── code_dispatcher │ │ │ ├── BUILD │ │ │ ├── byob │ │ │ │ ├── BUILD │ │ │ │ └── byob_dispatch_client.h │ │ │ ├── request_context.h │ │ │ ├── udf_code_loader_interface.h │ │ │ ├── v8_dispatch_client.cc │ │ │ ├── v8_dispatch_client.h │ │ │ ├── v8_dispatch_client_integration_test.cc │ │ │ ├── v8_dispatch_client_test.cc │ │ │ ├── v8_dispatcher.cc │ │ │ └── v8_dispatcher.h │ │ ├── config │ │ │ ├── BUILD │ │ │ ├── add_zone_aws.cc │ │ │ ├── add_zone_default.cc │ │ │ ├── add_zone_gcp.cc │ │ │ ├── parc_parameter_client.h │ │ │ ├── trusted_server_config_client.cc │ │ │ ├── trusted_server_config_client.h │ │ │ ├── trusted_server_config_client_cpio.cc │ │ │ ├── trusted_server_config_client_parc.cc │ │ │ ├── trusted_server_config_client_test.cc │ │ │ ├── trusted_server_config_client_util.cc │ │ │ └── trusted_server_config_client_util.h │ │ ├── http │ │ │ ├── BUILD │ │ │ ├── curl_request_data.cc │ │ │ ├── curl_request_data.h │ │ │ ├── curl_request_queue.cc │ │ │ ├── curl_request_queue.h │ │ │ ├── curl_request_queue_test.cc │ │ │ ├── curl_request_worker.cc │ │ │ ├── curl_request_worker.h │ │ │ ├── curl_request_worker_test.cc │ │ │ ├── http_fetcher_async.h │ │ │ ├── multi_curl_http_fetcher_async.cc │ │ │ ├── multi_curl_http_fetcher_async.h │ │ │ ├── multi_curl_http_fetcher_async_no_queue.cc │ │ │ ├── multi_curl_http_fetcher_async_no_queue.h │ │ │ ├── multi_curl_http_fetcher_async_test.cc │ │ │ ├── multi_curl_request_manager.cc │ │ │ ├── multi_curl_request_manager.h │ │ │ ├── multi_curl_request_manager_locking.cc │ │ │ └── multi_curl_request_manager_locking.h │ │ ├── http_kv_server │ │ │ ├── buyer │ │ │ │ ├── BUILD │ │ │ │ ├── ad_retrieval_constants.h │ │ │ │ ├── buyer_key_value_async_http_client.cc │ │ │ │ ├── buyer_key_value_async_http_client.h │ │ │ │ ├── buyer_key_value_async_http_client_test.cc │ │ │ │ ├── fake_buyer_key_value_async_http_client.cc │ │ │ │ ├── fake_buyer_key_value_async_http_client.h │ │ │ │ └── fake_buyer_key_value_async_http_client_test.cc │ │ │ ├── seller │ │ │ │ ├── BUILD │ │ │ │ ├── fake_seller_key_value_async_http_client.cc │ │ │ │ ├── fake_seller_key_value_async_http_client.h │ │ │ │ ├── seller_key_value_async_http_client.cc │ │ │ │ ├── seller_key_value_async_http_client.h │ │ │ │ └── seller_key_value_async_http_client_test.cc │ │ │ └── util │ │ │ │ ├── BUILD │ │ │ │ ├── generate_url.cc │ │ │ │ ├── generate_url.h │ │ │ │ ├── process_response.cc │ │ │ │ └── process_response.h │ │ ├── k_anon_server │ │ │ ├── BUILD │ │ │ ├── k_anon_client.cc │ │ │ ├── k_anon_client.h │ │ │ ├── k_anon_client_mock.h │ │ │ └── k_anon_grpc_client_test.cc │ │ ├── kv_server │ │ │ ├── BUILD │ │ │ ├── benchmarking │ │ │ │ ├── BUILD │ │ │ │ └── v2_adapter_benchmarks.cc │ │ │ ├── kv_async_client.cc │ │ │ ├── kv_async_client.h │ │ │ ├── kv_async_client_test.cc │ │ │ ├── kv_v2.cc │ │ │ ├── kv_v2.h │ │ │ └── kv_v2_test.cc │ │ └── seller_frontend_server │ │ │ ├── BUILD │ │ │ ├── seller_frontend_async_client.cc │ │ │ ├── seller_frontend_async_client.h │ │ │ └── seller_frontend_async_grpc_client_test.cc │ ├── code_dispatch │ │ ├── BUILD │ │ └── code_dispatch_reactor.h │ ├── compression │ │ ├── BUILD │ │ ├── compression_utils.cc │ │ ├── compression_utils.h │ │ ├── gzip.cc │ │ ├── gzip.h │ │ ├── gzip_test.cc │ │ ├── zstd.cc │ │ └── zstd.h │ ├── concurrent │ │ ├── BUILD │ │ ├── local_cache.h │ │ ├── static_local_cache.h │ │ ├── static_local_cache_test.cc │ │ ├── thread_pool_executor.cc │ │ └── thread_pool_executor.h │ ├── constants │ │ ├── BUILD │ │ ├── common_constants.h │ │ ├── common_service_flags.cc │ │ ├── common_service_flags.h │ │ └── user_error_strings.h │ ├── data_fetch │ │ ├── BUILD │ │ ├── fetcher_interface.h │ │ ├── periodic_bucket_code_fetcher.cc │ │ ├── periodic_bucket_code_fetcher.h │ │ ├── periodic_bucket_code_fetcher_cpio_test.cc │ │ ├── periodic_bucket_code_fetcher_parc_test.cc │ │ ├── periodic_bucket_fetcher.cc │ │ ├── periodic_bucket_fetcher.h │ │ ├── periodic_bucket_fetcher_cpio.cc │ │ ├── periodic_bucket_fetcher_metrics.h │ │ ├── periodic_bucket_fetcher_metrics_test.cc │ │ ├── periodic_bucket_fetcher_parc.cc │ │ ├── periodic_code_fetcher.cc │ │ ├── periodic_code_fetcher.h │ │ ├── periodic_code_fetcher_test.cc │ │ ├── periodic_url_fetcher.cc │ │ ├── periodic_url_fetcher.h │ │ ├── version_util.h │ │ └── version_util_test.cc │ ├── encryption │ │ ├── BUILD │ │ ├── crypto_client_factory.cc │ │ ├── crypto_client_factory.h │ │ ├── crypto_client_wrapper.cc │ │ ├── crypto_client_wrapper.h │ │ ├── crypto_client_wrapper_interface.h │ │ ├── crypto_client_wrapper_test.cc │ │ ├── key_fetcher_factory.cc │ │ ├── key_fetcher_factory.h │ │ └── mock_crypto_client_wrapper.h │ ├── feature_flags.cc │ ├── feature_flags.h │ ├── loggers │ │ ├── BUILD │ │ ├── benchmarking_logger.cc │ │ ├── benchmarking_logger.h │ │ ├── build_input_process_response_benchmarking_logger.cc │ │ ├── build_input_process_response_benchmarking_logger.h │ │ ├── no_ops_logger.h │ │ ├── request_log_context.h │ │ ├── request_log_context_non_prod.cc │ │ ├── request_log_context_non_prod_test.cc │ │ ├── request_log_context_prod.cc │ │ ├── request_log_context_prod_test.cc │ │ ├── source_location_context.h │ │ ├── timer.cc │ │ └── timer.h │ ├── metric │ │ ├── BUILD │ │ ├── error_code.h │ │ ├── roma_metric_utils.h │ │ ├── roma_metric_utils_test.cc │ │ ├── server_definition.h │ │ ├── server_definition_test.cc │ │ └── udf_metric.h │ ├── private_aggregation │ │ ├── BUILD │ │ ├── js │ │ │ ├── BUILD │ │ │ ├── private_aggregation_externs.js │ │ │ ├── private_aggregation_helper_functions.js │ │ │ ├── private_aggregation_helper_functions_externs.js │ │ │ └── private_aggregation_helper_functions_test.js │ │ ├── private_aggregation_post_auction_util.cc │ │ ├── private_aggregation_post_auction_util.h │ │ ├── private_aggregation_post_auction_util_test.cc │ │ ├── private_aggregation_test_util.cc │ │ └── private_aggregation_test_util.h │ ├── providers │ │ ├── BUILD │ │ └── async_provider.h │ ├── public_key_url_allowlist.h │ ├── random │ │ ├── BUILD │ │ ├── mock_rng.h │ │ ├── rng.cc │ │ └── rng.h │ ├── reporters │ │ ├── BUILD │ │ ├── async_reporter.cc │ │ ├── async_reporter.h │ │ └── async_reporter_test.cc │ ├── telemetry │ │ ├── BUILD │ │ ├── configure_telemetry.h │ │ └── configure_telemetry_test.cc │ ├── test │ │ ├── BUILD │ │ ├── artifacts │ │ │ └── grpc_tls │ │ │ │ ├── localhost.key │ │ │ │ ├── localhost.pem │ │ │ │ └── root_certificate_authority.pem │ │ ├── constants.h │ │ ├── mocks.h │ │ ├── random.cc │ │ ├── random.h │ │ └── utils │ │ │ ├── BUILD │ │ │ ├── cbor_test_utils.cc │ │ │ ├── cbor_test_utils.h │ │ │ ├── ohttp_utils.cc │ │ │ ├── ohttp_utils.h │ │ │ ├── proto_utils.h │ │ │ ├── service_utils.h │ │ │ ├── test_init.h │ │ │ ├── test_utils.cc │ │ │ └── test_utils.h │ └── util │ │ ├── BUILD │ │ ├── async_task_tracker.cc │ │ ├── async_task_tracker.h │ │ ├── async_task_tracker_test.cc │ │ ├── auction_scope_util.cc │ │ ├── auction_scope_util.h │ │ ├── auction_scope_util_test.cc │ │ ├── blob_storage_client_cpio_utils.cc │ │ ├── blob_storage_client_parc_utils.cc │ │ ├── blob_storage_client_utils.h │ │ ├── build_info.h │ │ ├── cancellation_wrapper.h │ │ ├── client_context_util.h │ │ ├── client_contexts.cc │ │ ├── client_contexts.h │ │ ├── constants.h │ │ ├── data_util.h │ │ ├── data_util_test.cc │ │ ├── error_accumulator.cc │ │ ├── error_accumulator.h │ │ ├── error_accumulator_test.cc │ │ ├── error_categories.h │ │ ├── error_reporter.h │ │ ├── event.cc │ │ ├── event.h │ │ ├── event_base.cc │ │ ├── event_base.h │ │ ├── file_util.cc │ │ ├── file_util.h │ │ ├── generate_build_info_cc │ │ ├── hash_util.cc │ │ ├── hash_util.h │ │ ├── hash_util_interface.h │ │ ├── hash_util_mock.h │ │ ├── hash_util_test.cc │ │ ├── hpke_utils.cc │ │ ├── hpke_utils.h │ │ ├── hpke_utils_test.cc │ │ ├── json_util.h │ │ ├── json_util_test.cc │ │ ├── map_utils.h │ │ ├── map_utils_test.cc │ │ ├── oblivious_http_utils.cc │ │ ├── oblivious_http_utils.h │ │ ├── oblivious_http_utils_test.cc │ │ ├── post_auction_signals.h │ │ ├── priority_vector │ │ ├── BUILD │ │ ├── priority_vector_utils.cc │ │ ├── priority_vector_utils.h │ │ └── priority_vector_utils_test.cc │ │ ├── proto_util.h │ │ ├── proto_util_test.cc │ │ ├── random_number_generator.cc │ │ ├── random_number_generator.h │ │ ├── random_number_generator_test.cc │ │ ├── read_system.cc │ │ ├── read_system.h │ │ ├── read_system_test.cc │ │ ├── reporting_util.cc │ │ ├── reporting_util.h │ │ ├── reporting_util_test.cc │ │ ├── request_metadata.cc │ │ ├── request_metadata.h │ │ ├── request_metadata_test.cc │ │ ├── request_response_constants.h │ │ ├── scoped_cbor.h │ │ ├── scoped_cbor_test.cc │ │ ├── signal_handler.h │ │ ├── signal_handler_non_prod.cc │ │ ├── signal_handler_prod.cc │ │ ├── status_utils.h │ │ ├── status_utils_test.cc │ │ ├── tcmalloc_utils.h │ │ ├── thread_safe_set.h │ │ └── thread_safe_set_test.cc ├── inference_sidecar │ ├── README.md │ ├── common │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── .gitignore │ │ ├── BUILD │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── benchmark │ │ │ ├── BUILD │ │ │ ├── ipc_sidecar_main.cc │ │ │ ├── module_benchmark.cc │ │ │ ├── request_utils.cc │ │ │ ├── request_utils.h │ │ │ ├── request_utils_test.cc │ │ │ ├── roma_benchmark.cc │ │ │ └── sandbox_benchmark.cc │ │ ├── builders │ │ │ ├── .coverage.bazelrc │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── scorecard.yaml │ │ │ ├── .gitignore │ │ │ ├── .markdownlint-cli2.yaml │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .prettierignore │ │ │ ├── .prettierrc.yaml │ │ │ ├── .versionrc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bazel │ │ │ │ ├── BUILD │ │ │ │ └── deps.bzl │ │ │ ├── etc │ │ │ │ ├── .bazelversion │ │ │ │ ├── .clang-format │ │ │ │ ├── .hadolint.yaml │ │ │ │ ├── .markdownlint-cli2.yaml │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ ├── .prettierrc.yaml │ │ │ │ └── .versionrc.json │ │ │ ├── images │ │ │ │ ├── build-amazonlinux2 │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── build-amazonlinux2023 │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── build-debian │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── compile_libprofiler │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── coverage-tools │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── install_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── generate_system_bazelrc │ │ │ │ ├── get_workspace_mount │ │ │ │ ├── gitconfig │ │ │ │ ├── install_go.sh │ │ │ │ ├── install_golang_apps │ │ │ │ ├── presubmit │ │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ └── install_go.sh │ │ │ │ ├── release │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_release_apps │ │ │ │ │ └── test │ │ │ │ │ │ ├── commands.yaml │ │ │ │ │ │ └── structure.yaml │ │ │ │ ├── test-tools │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── build_golang_apps │ │ │ │ │ ├── build_wrk │ │ │ │ │ └── install_apps │ │ │ │ └── utils │ │ │ │ │ └── Dockerfile │ │ │ ├── tests │ │ │ │ ├── data │ │ │ │ │ └── hashes │ │ │ │ │ │ ├── build-amazonlinux2 │ │ │ │ │ │ ├── build-amazonlinux2023 │ │ │ │ │ │ ├── build-debian │ │ │ │ │ │ ├── coverage-tools │ │ │ │ │ │ ├── presubmit │ │ │ │ │ │ ├── release │ │ │ │ │ │ ├── test-tools │ │ │ │ │ │ └── utils │ │ │ │ └── run-tests │ │ │ ├── tools │ │ │ │ ├── ab │ │ │ │ ├── aws-cli │ │ │ │ ├── awscurl │ │ │ │ ├── bazel-amazonlinux2 │ │ │ │ ├── bazel-amazonlinux2023 │ │ │ │ ├── bazel-debian │ │ │ │ ├── builder.sh │ │ │ │ ├── buildozer │ │ │ │ ├── cassowary │ │ │ │ ├── cbuild │ │ │ │ ├── collect-coverage │ │ │ │ ├── commit-and-tag-version │ │ │ │ ├── convert-docker-to-nitro │ │ │ │ ├── coverage-tool │ │ │ │ ├── curl │ │ │ │ ├── genhtml │ │ │ │ ├── get-architecture │ │ │ │ ├── get-builder-image-tagged │ │ │ │ ├── ghz │ │ │ │ ├── git-hooks │ │ │ │ │ └── pre-commit │ │ │ │ ├── google-pprof │ │ │ │ ├── grpcurl │ │ │ │ ├── h2load │ │ │ │ ├── hadolint │ │ │ │ ├── jq │ │ │ │ ├── lcov │ │ │ │ ├── normalize-bazel-symlinks │ │ │ │ ├── normalize-dist │ │ │ │ ├── pre-commit │ │ │ │ ├── release-tool │ │ │ │ ├── slowhttptest │ │ │ │ ├── terraform │ │ │ │ ├── test-tool │ │ │ │ ├── unzip │ │ │ │ ├── utils-tool │ │ │ │ ├── wrk2 │ │ │ │ └── zip │ │ │ └── version.txt │ │ ├── consented_logging_test.cc │ │ ├── grpc_sidecar.cc │ │ ├── grpc_sidecar.h │ │ ├── grpc_sidecar_test.cc │ │ ├── inference_sidecar_main.cc │ │ ├── inference_sidecar_test.cc │ │ ├── ipc_sidecar.cc │ │ ├── ipc_sidecar.h │ │ ├── model │ │ │ ├── BUILD │ │ │ ├── model_store.h │ │ │ ├── model_store_test.cc │ │ │ ├── validator.h │ │ │ └── validator_test.cc │ │ ├── modules │ │ │ ├── BUILD │ │ │ ├── module_concurrency_test.cc │ │ │ ├── module_interface.h │ │ │ ├── test_module.cc │ │ │ ├── test_module.h │ │ │ └── test_module_test.cc │ │ ├── proto │ │ │ ├── BUILD │ │ │ ├── inference_payload.proto │ │ │ ├── inference_sidecar.proto │ │ │ ├── model_metadata.proto │ │ │ └── testproto.proto │ │ ├── sandbox │ │ │ ├── BUILD │ │ │ ├── sandbox_executor.cc │ │ │ ├── sandbox_executor.h │ │ │ ├── sandbox_executor_test.cc │ │ │ ├── sandbox_worker.cc │ │ │ ├── sandbox_worker.h │ │ │ ├── sandboxee_exit_test_bin.cc │ │ │ ├── sandboxee_grpc_test_bin.cc │ │ │ └── sandboxee_ipc_test_bin.cc │ │ ├── test_constants.h │ │ ├── testdata │ │ │ ├── BUILD │ │ │ └── models │ │ │ │ ├── pytorch_e2e_model.pt │ │ │ │ ├── pytorch_external_class_model.pt │ │ │ │ ├── pytorch_external_function_model.pt │ │ │ │ ├── pytorch_frozen_model.pt │ │ │ │ ├── pytorch_generate_bid_model.pt │ │ │ │ ├── pytorch_mixed_inputs_mixed_outputs_model.pt │ │ │ │ ├── pytorch_nested_block_model.pt │ │ │ │ ├── pytorch_simple_model.pt │ │ │ │ ├── pytorch_stateful_model.pt │ │ │ │ ├── pytorch_submodule_model.pt │ │ │ │ ├── pytorch_unfreezable_model.pt │ │ │ │ ├── tensorflow_1_mib_saved_model.pb │ │ │ │ └── tensorflow_simple_model │ │ │ │ ├── BUILD │ │ │ │ ├── saved_model.pb │ │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── third_party │ │ │ ├── BUILD │ │ │ └── rapidjson.BUILD.bazel │ │ ├── tools │ │ │ ├── collect-logs │ │ │ └── debug │ │ │ │ └── generateBidRunInference.js │ │ └── utils │ │ │ ├── BUILD │ │ │ ├── cancellation_util.h │ │ │ ├── cancellation_util_test.cc │ │ │ ├── cpu.cc │ │ │ ├── cpu.h │ │ │ ├── cpu_test.cc │ │ │ ├── error.cc │ │ │ ├── error.h │ │ │ ├── error_test.cc │ │ │ ├── file_util.cc │ │ │ ├── file_util.h │ │ │ ├── inference_error_code.h │ │ │ ├── inference_metric_util.cc │ │ │ ├── inference_metric_util.h │ │ │ ├── inference_metric_util_test.cc │ │ │ ├── json_util.h │ │ │ ├── log.h │ │ │ ├── log_test.cc │ │ │ ├── request_parser.cc │ │ │ ├── request_parser.h │ │ │ ├── request_parser_test.cc │ │ │ ├── request_proto_parser.cc │ │ │ ├── request_proto_parser.h │ │ │ ├── request_proto_parser_test.cc │ │ │ ├── resource_size_utils.cc │ │ │ ├── resource_size_utils.h │ │ │ ├── resource_size_utils_test.cc │ │ │ ├── tcmalloc.h │ │ │ └── test_util.h │ └── modules │ │ ├── .gitignore │ │ ├── pytorch_v2_1_1 │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── .gitignore │ │ ├── BUILD │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── benchmark │ │ │ └── BUILD │ │ ├── builders │ │ │ ├── .coverage.bazelrc │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── scorecard.yaml │ │ │ ├── .gitignore │ │ │ ├── .markdownlint-cli2.yaml │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .prettierignore │ │ │ ├── .prettierrc.yaml │ │ │ ├── .versionrc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bazel │ │ │ │ ├── BUILD │ │ │ │ └── deps.bzl │ │ │ ├── etc │ │ │ │ ├── .bazelversion │ │ │ │ ├── .clang-format │ │ │ │ ├── .hadolint.yaml │ │ │ │ ├── .markdownlint-cli2.yaml │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ ├── .prettierrc.yaml │ │ │ │ └── .versionrc.json │ │ │ ├── images │ │ │ │ ├── build-amazonlinux2 │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── build-amazonlinux2023 │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── build-debian │ │ │ │ │ ├── .bazelversion │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── compile_libprofiler │ │ │ │ │ ├── generate_system_bazelrc │ │ │ │ │ ├── get_workspace_mount │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ ├── install_go.sh │ │ │ │ │ ├── install_golang_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── coverage-tools │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── install_apps │ │ │ │ │ └── test │ │ │ │ │ │ └── commands.yaml │ │ │ │ ├── generate_system_bazelrc │ │ │ │ ├── get_workspace_mount │ │ │ │ ├── gitconfig │ │ │ │ ├── install_go.sh │ │ │ │ ├── install_golang_apps │ │ │ │ ├── presubmit │ │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_apps │ │ │ │ │ └── install_go.sh │ │ │ │ ├── release │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── gitconfig │ │ │ │ │ ├── install_release_apps │ │ │ │ │ └── test │ │ │ │ │ │ ├── commands.yaml │ │ │ │ │ │ └── structure.yaml │ │ │ │ ├── test-tools │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── build_golang_apps │ │ │ │ │ ├── build_wrk │ │ │ │ │ └── install_apps │ │ │ │ └── utils │ │ │ │ │ └── Dockerfile │ │ │ ├── tests │ │ │ │ ├── data │ │ │ │ │ └── hashes │ │ │ │ │ │ ├── build-amazonlinux2 │ │ │ │ │ │ ├── build-amazonlinux2023 │ │ │ │ │ │ ├── build-debian │ │ │ │ │ │ ├── coverage-tools │ │ │ │ │ │ ├── presubmit │ │ │ │ │ │ ├── release │ │ │ │ │ │ ├── test-tools │ │ │ │ │ │ └── utils │ │ │ │ └── run-tests │ │ │ ├── tools │ │ │ │ ├── ab │ │ │ │ ├── aws-cli │ │ │ │ ├── awscurl │ │ │ │ ├── bazel-amazonlinux2 │ │ │ │ ├── bazel-amazonlinux2023 │ │ │ │ ├── bazel-debian │ │ │ │ ├── builder.sh │ │ │ │ ├── buildozer │ │ │ │ ├── cassowary │ │ │ │ ├── cbuild │ │ │ │ ├── collect-coverage │ │ │ │ ├── commit-and-tag-version │ │ │ │ ├── convert-docker-to-nitro │ │ │ │ ├── coverage-tool │ │ │ │ ├── curl │ │ │ │ ├── genhtml │ │ │ │ ├── get-architecture │ │ │ │ ├── get-builder-image-tagged │ │ │ │ ├── ghz │ │ │ │ ├── git-hooks │ │ │ │ │ └── pre-commit │ │ │ │ ├── google-pprof │ │ │ │ ├── grpcurl │ │ │ │ ├── h2load │ │ │ │ ├── hadolint │ │ │ │ ├── jq │ │ │ │ ├── lcov │ │ │ │ ├── normalize-bazel-symlinks │ │ │ │ ├── normalize-dist │ │ │ │ ├── pre-commit │ │ │ │ ├── release-tool │ │ │ │ ├── slowhttptest │ │ │ │ ├── terraform │ │ │ │ ├── test-tool │ │ │ │ ├── unzip │ │ │ │ ├── utils-tool │ │ │ │ ├── wrk2 │ │ │ │ └── zip │ │ │ └── version.txt │ │ ├── pytorch.cc │ │ ├── pytorch.h │ │ ├── pytorch_parser.cc │ │ ├── pytorch_parser.h │ │ ├── pytorch_parser_test.cc │ │ ├── pytorch_test.cc │ │ ├── test_constants.h │ │ ├── third_party │ │ │ ├── BUILD │ │ │ ├── pytorch_v2_1_1.patch │ │ │ ├── pytorch_v2_1_1_deps1.bzl │ │ │ ├── pytorch_v2_1_1_deps2.bzl │ │ │ ├── pytorch_v2_1_1_libnop.BUILD │ │ │ ├── pytorch_v2_1_1_libuv.BUILD │ │ │ └── pytorch_v2_1_1_tensorpipe.BUILD │ │ ├── tools │ │ │ ├── BUILD │ │ │ ├── collect-logs │ │ │ └── list_ops.cc │ │ ├── validator.cc │ │ ├── validator.h │ │ └── validator_test.cc │ │ └── tensorflow_v2_17_0 │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── .gitignore │ │ ├── BUILD │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── benchmark │ │ └── BUILD │ │ ├── benchmark_models │ │ ├── embedding │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── frozen_embedding │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── frozen_pctr │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── frozen_pcvr │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── pctr │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── pcvr │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ └── stateful │ │ │ ├── BUILD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ │ ├── builders │ │ ├── .coverage.bazelrc │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── scorecard.yaml │ │ ├── .gitignore │ │ ├── .markdownlint-cli2.yaml │ │ ├── .pre-commit-config.yaml │ │ ├── .prettierignore │ │ ├── .prettierrc.yaml │ │ ├── .versionrc.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bazel │ │ │ ├── BUILD │ │ │ └── deps.bzl │ │ ├── etc │ │ │ ├── .bazelversion │ │ │ ├── .clang-format │ │ │ ├── .hadolint.yaml │ │ │ ├── .markdownlint-cli2.yaml │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .prettierrc.yaml │ │ │ └── .versionrc.json │ │ ├── images │ │ │ ├── build-amazonlinux2 │ │ │ │ ├── .bazelversion │ │ │ │ ├── Dockerfile │ │ │ │ ├── generate_system_bazelrc │ │ │ │ ├── get_workspace_mount │ │ │ │ ├── gitconfig │ │ │ │ ├── install_apps │ │ │ │ ├── install_go.sh │ │ │ │ ├── install_golang_apps │ │ │ │ └── test │ │ │ │ │ └── commands.yaml │ │ │ ├── build-amazonlinux2023 │ │ │ │ ├── .bazelversion │ │ │ │ ├── Dockerfile │ │ │ │ ├── generate_system_bazelrc │ │ │ │ ├── get_workspace_mount │ │ │ │ ├── gitconfig │ │ │ │ ├── install_apps │ │ │ │ ├── install_go.sh │ │ │ │ ├── install_golang_apps │ │ │ │ └── test │ │ │ │ │ └── commands.yaml │ │ │ ├── build-debian │ │ │ │ ├── .bazelversion │ │ │ │ ├── Dockerfile │ │ │ │ ├── compile_libprofiler │ │ │ │ ├── generate_system_bazelrc │ │ │ │ ├── get_workspace_mount │ │ │ │ ├── gitconfig │ │ │ │ ├── install_apps │ │ │ │ ├── install_go.sh │ │ │ │ ├── install_golang_apps │ │ │ │ └── test │ │ │ │ │ └── commands.yaml │ │ │ ├── coverage-tools │ │ │ │ ├── Dockerfile │ │ │ │ ├── install_apps │ │ │ │ └── test │ │ │ │ │ └── commands.yaml │ │ │ ├── generate_system_bazelrc │ │ │ ├── get_workspace_mount │ │ │ ├── gitconfig │ │ │ ├── install_go.sh │ │ │ ├── install_golang_apps │ │ │ ├── presubmit │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ ├── Dockerfile │ │ │ │ ├── gitconfig │ │ │ │ ├── install_apps │ │ │ │ └── install_go.sh │ │ │ ├── release │ │ │ │ ├── Dockerfile │ │ │ │ ├── gitconfig │ │ │ │ ├── install_release_apps │ │ │ │ └── test │ │ │ │ │ ├── commands.yaml │ │ │ │ │ └── structure.yaml │ │ │ ├── test-tools │ │ │ │ ├── Dockerfile │ │ │ │ ├── build_golang_apps │ │ │ │ ├── build_wrk │ │ │ │ └── install_apps │ │ │ └── utils │ │ │ │ └── Dockerfile │ │ ├── tests │ │ │ ├── data │ │ │ │ └── hashes │ │ │ │ │ ├── build-amazonlinux2 │ │ │ │ │ ├── build-amazonlinux2023 │ │ │ │ │ ├── build-debian │ │ │ │ │ ├── coverage-tools │ │ │ │ │ ├── presubmit │ │ │ │ │ ├── release │ │ │ │ │ ├── test-tools │ │ │ │ │ └── utils │ │ │ └── run-tests │ │ ├── tools │ │ │ ├── ab │ │ │ ├── aws-cli │ │ │ ├── awscurl │ │ │ ├── bazel-amazonlinux2 │ │ │ ├── bazel-amazonlinux2023 │ │ │ ├── bazel-debian │ │ │ ├── builder.sh │ │ │ ├── buildozer │ │ │ ├── cassowary │ │ │ ├── cbuild │ │ │ ├── collect-coverage │ │ │ ├── commit-and-tag-version │ │ │ ├── convert-docker-to-nitro │ │ │ ├── coverage-tool │ │ │ ├── curl │ │ │ ├── genhtml │ │ │ ├── get-architecture │ │ │ ├── get-builder-image-tagged │ │ │ ├── ghz │ │ │ ├── git-hooks │ │ │ │ └── pre-commit │ │ │ ├── google-pprof │ │ │ ├── grpcurl │ │ │ ├── h2load │ │ │ ├── hadolint │ │ │ ├── jq │ │ │ ├── lcov │ │ │ ├── normalize-bazel-symlinks │ │ │ ├── normalize-dist │ │ │ ├── pre-commit │ │ │ ├── release-tool │ │ │ ├── slowhttptest │ │ │ ├── terraform │ │ │ ├── test-tool │ │ │ ├── unzip │ │ │ ├── utils-tool │ │ │ ├── wrk2 │ │ │ └── zip │ │ └── version.txt │ │ ├── ram_file_system_test.cc │ │ ├── tensorflow.cc │ │ ├── tensorflow.h │ │ ├── tensorflow_parser.cc │ │ ├── tensorflow_parser.h │ │ ├── tensorflow_parser_test.cc │ │ ├── tensorflow_proto_parser.cc │ │ ├── tensorflow_proto_parser.h │ │ ├── tensorflow_proto_parser_test.cc │ │ ├── tensorflow_test.cc │ │ ├── test_constants.h │ │ ├── third_party │ │ ├── BUILD │ │ └── google_privacysandbox_servers_common.patch │ │ ├── tools │ │ ├── BUILD │ │ ├── collect-logs │ │ ├── freeze_model.cc │ │ └── list_ops.cc │ │ ├── validator.cc │ │ ├── validator.h │ │ └── validator_test.cc └── seller_frontend_service │ ├── BUILD │ ├── README.md │ ├── benchmarking │ ├── BUILD │ └── select_ad_reactor_benchmarks.cc │ ├── data │ ├── BUILD │ ├── k_anon.h │ └── scoring_signals.h │ ├── get_component_auction_ciphertexts_reactor.cc │ ├── get_component_auction_ciphertexts_reactor.h │ ├── get_component_auction_ciphertexts_reactor_test.cc │ ├── k_anon │ ├── BUILD │ ├── constants.h │ ├── k_anon_cache_manager.cc │ ├── k_anon_cache_manager.h │ ├── k_anon_cache_manager_benchmarks.cc │ ├── k_anon_cache_manager_interface.h │ ├── k_anon_cache_manager_mock.h │ ├── k_anon_cache_manager_test.cc │ ├── k_anon_utils.cc │ ├── k_anon_utils.h │ └── k_anon_utils_test.cc │ ├── kv_seller_signals_adapter.cc │ ├── kv_seller_signals_adapter.h │ ├── kv_seller_signals_adapter_test.cc │ ├── private_aggregation │ ├── BUILD │ ├── private_aggregation_helper.cc │ ├── private_aggregation_helper.h │ └── private_aggregation_helper_test.cc │ ├── providers │ ├── BUILD │ ├── http_scoring_signals_async_provider.cc │ ├── http_scoring_signals_async_provider.h │ ├── http_scoring_signals_async_provider_test.cc │ └── scoring_signals_async_provider.h │ ├── report_win_map.h │ ├── runtime_flags.h │ ├── schemas │ ├── auction_request.json │ ├── auction_response.json │ ├── examples │ │ ├── auction_blob_request_example.json │ │ ├── auction_response.json │ │ └── interest_group_request_example.json │ └── interest_group.json │ ├── select_ad_reactor.cc │ ├── select_ad_reactor.h │ ├── select_ad_reactor_app.cc │ ├── select_ad_reactor_app.h │ ├── select_ad_reactor_app_test.cc │ ├── select_ad_reactor_invalid.cc │ ├── select_ad_reactor_invalid.h │ ├── select_ad_reactor_test.cc │ ├── select_ad_reactor_web.cc │ ├── select_ad_reactor_web.h │ ├── select_ad_reactor_web_test.cc │ ├── select_auction_result_reactor.cc │ ├── select_auction_result_reactor.h │ ├── select_auction_result_reactor_test.cc │ ├── seller_frontend_main.cc │ ├── seller_frontend_service.cc │ ├── seller_frontend_service.h │ ├── seller_frontend_service_test.cc │ ├── test │ ├── BUILD │ ├── app_test_utils.cc │ ├── app_test_utils.h │ ├── constants.h │ ├── kanon_test_utils.cc │ └── kanon_test_utils.h │ └── util │ ├── BUILD │ ├── buyer_input_proto_utils.cc │ ├── buyer_input_proto_utils.h │ ├── buyer_input_proto_utils_test.cc │ ├── cbor_common_util.cc │ ├── cbor_common_util.h │ ├── chaffing_utils.cc │ ├── chaffing_utils.h │ ├── chaffing_utils_test.cc │ ├── config_param_parser.cc │ ├── config_param_parser.h │ ├── config_param_parser_test.cc │ ├── encryption_util.cc │ ├── encryption_util.h │ ├── encryption_util_test.cc │ ├── framing_utils.cc │ ├── framing_utils.h │ ├── key_fetcher_utils.cc │ ├── key_fetcher_utils.h │ ├── key_fetcher_utils_non_prod_test.cc │ ├── key_fetcher_utils_prod_test.cc │ ├── key_fetcher_utils_test.cc │ ├── proto_mapping_util.cc │ ├── proto_mapping_util.h │ ├── proto_mapping_util_test.cc │ ├── select_ad_reactor_test_utils.cc │ ├── select_ad_reactor_test_utils.h │ ├── validation_utils.cc │ ├── validation_utils.h │ ├── validation_utils_test.cc │ ├── web_utils.cc │ ├── web_utils.h │ └── web_utils_test.cc ├── third_party ├── BUILD ├── cddl │ ├── BUILD │ ├── BUILD.bazel │ ├── Cargo.lock │ ├── Cargo.toml │ ├── WORKSPACE │ ├── cargo-bazel-lock.json │ ├── cddl.BUILD │ ├── cddl.h │ └── cddl.patch ├── container_deps.bzl ├── cpp_proto_builder │ └── cpp_proto_builder.patch ├── deps.bzl ├── differential_privacy.patch ├── googleapis.BUILD ├── libcbor.BUILD ├── libcbor.patch ├── libevent-evconfig.patch ├── libevent.BUILD ├── libevent.patch ├── libtld │ ├── BUILD │ ├── tld.cpp │ ├── tld.h │ ├── tld_data.c │ ├── tld_data.h │ ├── tld_domain_to_lowercase.c │ ├── tld_file.cpp │ ├── tld_file.h │ └── tld_strings.c └── zstd.BUILD ├── tools ├── collect-logs ├── cost_estimation │ ├── .bazelrc │ ├── .bazelversion │ ├── BUILD │ ├── README.md │ ├── WORKSPACE │ ├── cost.yaml │ ├── cost_tool.py │ ├── cost_tool_test.py │ ├── docker_files │ │ ├── Dockerfile │ │ ├── Dockerfile.build-and-test │ │ └── generate_system_bazelrc │ ├── estimator.py │ ├── estimator_test.py │ ├── main.py │ ├── metrics_loader.py │ ├── metrics_loader_test.py │ ├── render.py │ ├── render_test.py │ ├── requirements_lock.txt │ ├── run_in_docker │ ├── sku.json │ ├── sql_expr.py │ ├── sql_expr_test.py │ ├── utils.py │ └── utils_test.py ├── debug │ ├── README.md │ ├── common │ ├── envoy.yaml │ ├── start_auction │ ├── start_bfe │ ├── start_bidding │ ├── start_bidding_byob │ └── start_sfe ├── get_workspace_status ├── load_testing │ └── README.md ├── secure_invoke │ ├── BUILD │ ├── README.md │ ├── flags.cc │ ├── flags.h │ ├── payload_generator │ │ ├── BUILD │ │ ├── payload_packaging.cc │ │ ├── payload_packaging.h │ │ ├── payload_packaging_test.cc │ │ ├── payload_packaging_utils.cc │ │ ├── payload_packaging_utils.h │ │ └── payload_packaging_utils_test.cc │ ├── secure_invoke.cc │ ├── secure_invoke_lib.cc │ ├── secure_invoke_lib.h │ └── secure_invoke_lib_test.cc └── udf │ └── generate_bid │ ├── byob_sdk │ ├── BUILD │ └── docs │ │ ├── GenerateBid Onboarding Guide.md │ │ └── requests │ │ ├── sample.json │ │ └── sample.txtpb │ └── samples │ ├── BUILD │ └── sample_generate_bid_udf.cc └── version.txt /.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.bazelignore -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.0 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | builders/etc/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.github/workflows/scorecard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.hadolint.yaml -------------------------------------------------------------------------------- /.markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.markdown-link-check.json -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /.git/ 2 | /CHANGELOG.md 3 | /google_internal/LATEST_RELEASE.md 4 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | builders/etc/.prettierrc.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/.pylintrc -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/BUILD -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/CPPLINT.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/WORKSPACE -------------------------------------------------------------------------------- /api/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/BUILD -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/README.md -------------------------------------------------------------------------------- /api/attestation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/attestation.proto -------------------------------------------------------------------------------- /api/bidding_auction_servers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/bidding_auction_servers.proto -------------------------------------------------------------------------------- /api/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/buf.lock -------------------------------------------------------------------------------- /api/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/buf.yaml -------------------------------------------------------------------------------- /api/k_anon_query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/k_anon_query.proto -------------------------------------------------------------------------------- /api/udf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/udf/BUILD -------------------------------------------------------------------------------- /api/udf/generate_bid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/api/udf/generate_bid.proto -------------------------------------------------------------------------------- /config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/config.bzl -------------------------------------------------------------------------------- /docs/building_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/docs/building_artifacts.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/playbook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/docs/playbook/index.md -------------------------------------------------------------------------------- /docs/playbook/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/docs/playbook/template.md -------------------------------------------------------------------------------- /production/deploy/aws/terraform/environment/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/aws/terraform/environment/demo/README.md -------------------------------------------------------------------------------- /production/deploy/aws/terraform/environment/demo/buyer_multi_region/terraform.tf: -------------------------------------------------------------------------------- 1 | ../buyer/terraform.tf -------------------------------------------------------------------------------- /production/deploy/aws/terraform/modules/buyer/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/aws/terraform/modules/buyer/service.tf -------------------------------------------------------------------------------- /production/deploy/aws/terraform/modules/seller/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/aws/terraform/modules/seller/service.tf -------------------------------------------------------------------------------- /production/deploy/aws/terraform/services/app_mesh/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/aws/terraform/services/app_mesh/main.tf -------------------------------------------------------------------------------- /production/deploy/aws/terraform/services/iam_roles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/aws/terraform/services/iam_roles/main.tf -------------------------------------------------------------------------------- /production/deploy/azure/helm/byoc-tls-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/byoc-tls-chart/.helmignore -------------------------------------------------------------------------------- /production/deploy/azure/helm/byoc-tls-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/byoc-tls-chart/Chart.yaml -------------------------------------------------------------------------------- /production/deploy/azure/helm/parc-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/parc-chart/.helmignore -------------------------------------------------------------------------------- /production/deploy/azure/helm/parc-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/parc-chart/Chart.yaml -------------------------------------------------------------------------------- /production/deploy/azure/helm/parc-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/parc-chart/values.yaml -------------------------------------------------------------------------------- /production/deploy/azure/helm/tls-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/tls-chart/.helmignore -------------------------------------------------------------------------------- /production/deploy/azure/helm/tls-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/tls-chart/Chart.yaml -------------------------------------------------------------------------------- /production/deploy/azure/helm/tls-chart/values.yaml.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/helm/tls-chart/values.yaml.tftpl -------------------------------------------------------------------------------- /production/deploy/azure/terraform/components/aks/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/terraform/components/aks/main.tf -------------------------------------------------------------------------------- /production/deploy/azure/terraform/components/dns/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/terraform/components/dns/main.tf -------------------------------------------------------------------------------- /production/deploy/azure/terraform/components/iam/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/terraform/components/iam/main.tf -------------------------------------------------------------------------------- /production/deploy/azure/terraform/components/parc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/terraform/components/parc/main.tf -------------------------------------------------------------------------------- /production/deploy/azure/terraform/components/tls/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/azure/terraform/components/tls/main.tf -------------------------------------------------------------------------------- /production/deploy/gcp/terraform/modules/buyer/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/gcp/terraform/modules/buyer/outputs.tf -------------------------------------------------------------------------------- /production/deploy/gcp/terraform/modules/buyer/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/gcp/terraform/modules/buyer/service.tf -------------------------------------------------------------------------------- /production/deploy/gcp/terraform/modules/seller/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/gcp/terraform/modules/seller/outputs.tf -------------------------------------------------------------------------------- /production/deploy/gcp/terraform/modules/seller/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/gcp/terraform/modules/seller/service.tf -------------------------------------------------------------------------------- /production/deploy/gcp/terraform/services/security/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/deploy/gcp/terraform/services/security/main.tf -------------------------------------------------------------------------------- /production/packaging/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/.bazelrc -------------------------------------------------------------------------------- /production/packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/README.md -------------------------------------------------------------------------------- /production/packaging/aws/auction_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/auction_service/BUILD -------------------------------------------------------------------------------- /production/packaging/aws/bidding_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/bidding_service/BUILD -------------------------------------------------------------------------------- /production/packaging/aws/build_and_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/build_and_test -------------------------------------------------------------------------------- /production/packaging/aws/buyer_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/buyer_frontend_service/BUILD -------------------------------------------------------------------------------- /production/packaging/aws/codebuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/codebuild/README.md -------------------------------------------------------------------------------- /production/packaging/aws/codebuild/buildspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/codebuild/buildspec.yaml -------------------------------------------------------------------------------- /production/packaging/aws/codebuild/sync_bidding_auction_repo.yaml: -------------------------------------------------------------------------------- 1 | ../../gcp/cloud_build/sync_bidding_auction_repo.yaml -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/BUILD -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/configure_and_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/configure_and_start -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/envoy.yaml -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/envoy_networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/envoy_networking.sh -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/fakekv.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/fakekv.pkr.hcl -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/hc.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/hc.bash -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/health.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/health.proto -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/image.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/image.pkr.hcl -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/setup.sh -------------------------------------------------------------------------------- /production/packaging/aws/common/ami/vsockproxy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/common/ami/vsockproxy.service -------------------------------------------------------------------------------- /production/packaging/aws/seller_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/aws/seller_frontend_service/BUILD -------------------------------------------------------------------------------- /production/packaging/azure/auction_service/BUILD: -------------------------------------------------------------------------------- 1 | ../../gcp/auction_service/BUILD -------------------------------------------------------------------------------- /production/packaging/azure/auction_service/test: -------------------------------------------------------------------------------- 1 | ../../gcp/auction_service/test/ -------------------------------------------------------------------------------- /production/packaging/azure/bidding_service/BUILD: -------------------------------------------------------------------------------- 1 | ../../gcp/bidding_service/BUILD -------------------------------------------------------------------------------- /production/packaging/azure/bidding_service/test: -------------------------------------------------------------------------------- 1 | ../../gcp/bidding_service/test -------------------------------------------------------------------------------- /production/packaging/azure/buyer_frontend_service/BUILD: -------------------------------------------------------------------------------- 1 | ../../gcp/buyer_frontend_service/BUILD -------------------------------------------------------------------------------- /production/packaging/azure/buyer_frontend_service/test: -------------------------------------------------------------------------------- 1 | ../../gcp/buyer_frontend_service/test/ -------------------------------------------------------------------------------- /production/packaging/azure/lib_azure_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/azure/lib_azure_artifacts.sh -------------------------------------------------------------------------------- /production/packaging/azure/seller_frontend_service/BUILD: -------------------------------------------------------------------------------- 1 | ../../gcp/seller_frontend_service/BUILD -------------------------------------------------------------------------------- /production/packaging/azure/seller_frontend_service/test: -------------------------------------------------------------------------------- 1 | ../../gcp/seller_frontend_service/test/ -------------------------------------------------------------------------------- /production/packaging/build_and_test_all_in_docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/build_and_test_all_in_docker -------------------------------------------------------------------------------- /production/packaging/gcp/auction_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/auction_service/BUILD -------------------------------------------------------------------------------- /production/packaging/gcp/bidding_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/bidding_service/BUILD -------------------------------------------------------------------------------- /production/packaging/gcp/buyer_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/buyer_frontend_service/BUILD -------------------------------------------------------------------------------- /production/packaging/gcp/cloud_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/cloud_build/Dockerfile -------------------------------------------------------------------------------- /production/packaging/gcp/cloud_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/cloud_build/README.md -------------------------------------------------------------------------------- /production/packaging/gcp/cloud_build/cloud_build.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/cloud_build/cloud_build.tf -------------------------------------------------------------------------------- /production/packaging/gcp/cloud_build/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/cloud_build/cloudbuild.yaml -------------------------------------------------------------------------------- /production/packaging/gcp/cloud_build/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/cloud_build/terraform.tf -------------------------------------------------------------------------------- /production/packaging/gcp/lib_gcp_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/lib_gcp_artifacts.sh -------------------------------------------------------------------------------- /production/packaging/gcp/seller_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/production/packaging/gcp/seller_frontend_service/BUILD -------------------------------------------------------------------------------- /services/auction_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/BUILD -------------------------------------------------------------------------------- /services/auction_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/auction_service/auction_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_constants.h -------------------------------------------------------------------------------- /services/auction_service/auction_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_main.cc -------------------------------------------------------------------------------- /services/auction_service/auction_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_service.cc -------------------------------------------------------------------------------- /services/auction_service/auction_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_service.h -------------------------------------------------------------------------------- /services/auction_service/auction_service_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_service_test.cc -------------------------------------------------------------------------------- /services/auction_service/auction_test_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/auction_test_constants.h -------------------------------------------------------------------------------- /services/auction_service/benchmarking/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/benchmarking/BUILD -------------------------------------------------------------------------------- /services/auction_service/code_wrapper/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/code_wrapper/BUILD -------------------------------------------------------------------------------- /services/auction_service/code_wrapper/js/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/code_wrapper/js/BUILD -------------------------------------------------------------------------------- /services/auction_service/data/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/data/BUILD -------------------------------------------------------------------------------- /services/auction_service/data/runtime_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/data/runtime_config.h -------------------------------------------------------------------------------- /services/auction_service/private_aggregation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/private_aggregation/BUILD -------------------------------------------------------------------------------- /services/auction_service/reporting/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/BUILD -------------------------------------------------------------------------------- /services/auction_service/reporting/buyer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/buyer/BUILD -------------------------------------------------------------------------------- /services/auction_service/reporting/noiser_and_bucketer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/noiser_and_bucketer.cc -------------------------------------------------------------------------------- /services/auction_service/reporting/noiser_and_bucketer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/noiser_and_bucketer.h -------------------------------------------------------------------------------- /services/auction_service/reporting/reporting_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/reporting_helper.cc -------------------------------------------------------------------------------- /services/auction_service/reporting/reporting_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/reporting_helper.h -------------------------------------------------------------------------------- /services/auction_service/reporting/reporting_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/reporting_response.h -------------------------------------------------------------------------------- /services/auction_service/reporting/reporting_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/reporting_test_util.cc -------------------------------------------------------------------------------- /services/auction_service/reporting/reporting_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/reporting_test_util.h -------------------------------------------------------------------------------- /services/auction_service/reporting/seller/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/reporting/seller/BUILD -------------------------------------------------------------------------------- /services/auction_service/runtime_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/runtime_flags.h -------------------------------------------------------------------------------- /services/auction_service/score_ads_reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/score_ads_reactor.cc -------------------------------------------------------------------------------- /services/auction_service/score_ads_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/score_ads_reactor.h -------------------------------------------------------------------------------- /services/auction_service/score_ads_reactor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/score_ads_reactor_test.cc -------------------------------------------------------------------------------- /services/auction_service/score_ads_reactor_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/score_ads_reactor_test_util.cc -------------------------------------------------------------------------------- /services/auction_service/score_ads_reactor_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/score_ads_reactor_test_util.h -------------------------------------------------------------------------------- /services/auction_service/udf_fetcher/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/udf_fetcher/BUILD -------------------------------------------------------------------------------- /services/auction_service/udf_fetcher/testScoreAds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/udf_fetcher/testScoreAds.js -------------------------------------------------------------------------------- /services/auction_service/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/utils/BUILD -------------------------------------------------------------------------------- /services/auction_service/utils/proto_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/utils/proto_utils.cc -------------------------------------------------------------------------------- /services/auction_service/utils/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/utils/proto_utils.h -------------------------------------------------------------------------------- /services/auction_service/utils/proto_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/auction_service/utils/proto_utils_test.cc -------------------------------------------------------------------------------- /services/bidding_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/BUILD -------------------------------------------------------------------------------- /services/bidding_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bidding_service/base_generate_bids_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/base_generate_bids_reactor.h -------------------------------------------------------------------------------- /services/bidding_service/benchmarking/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/benchmarking/BUILD -------------------------------------------------------------------------------- /services/bidding_service/bidding_code_fetch_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_code_fetch_config.proto -------------------------------------------------------------------------------- /services/bidding_service/bidding_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_main.cc -------------------------------------------------------------------------------- /services/bidding_service/bidding_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_service.cc -------------------------------------------------------------------------------- /services/bidding_service/bidding_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_service.h -------------------------------------------------------------------------------- /services/bidding_service/bidding_service_factories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_service_factories.h -------------------------------------------------------------------------------- /services/bidding_service/bidding_service_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_service_test.cc -------------------------------------------------------------------------------- /services/bidding_service/bidding_v8_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/bidding_v8_constants.h -------------------------------------------------------------------------------- /services/bidding_service/buyer_code_fetch_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/buyer_code_fetch_manager.cc -------------------------------------------------------------------------------- /services/bidding_service/buyer_code_fetch_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/buyer_code_fetch_manager.h -------------------------------------------------------------------------------- /services/bidding_service/buyer_code_fetch_manager_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/buyer_code_fetch_manager_test.cc -------------------------------------------------------------------------------- /services/bidding_service/byob/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/byob/BUILD -------------------------------------------------------------------------------- /services/bidding_service/byob/byob_batching_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/byob/byob_batching_config.proto -------------------------------------------------------------------------------- /services/bidding_service/byob/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/byob/proto_utils.h -------------------------------------------------------------------------------- /services/bidding_service/cddl_spec_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/cddl_spec_cache.cc -------------------------------------------------------------------------------- /services/bidding_service/cddl_spec_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/cddl_spec_cache.h -------------------------------------------------------------------------------- /services/bidding_service/cddl_spec_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/cddl_spec_cache_test.cc -------------------------------------------------------------------------------- /services/bidding_service/code_wrapper/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/code_wrapper/BUILD -------------------------------------------------------------------------------- /services/bidding_service/code_wrapper/js/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/code_wrapper/js/BUILD -------------------------------------------------------------------------------- /services/bidding_service/data/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/data/BUILD -------------------------------------------------------------------------------- /services/bidding_service/data/runtime_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/data/runtime_config.h -------------------------------------------------------------------------------- /services/bidding_service/egress_cddl_spec/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_cddl_spec/1.0.0 -------------------------------------------------------------------------------- /services/bidding_service/egress_cddl_spec/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_cddl_spec/BUILD -------------------------------------------------------------------------------- /services/bidding_service/egress_features/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_features/BUILD -------------------------------------------------------------------------------- /services/bidding_service/egress_features/bucket_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_features/bucket_feature.h -------------------------------------------------------------------------------- /services/bidding_service/egress_features/egress_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_features/egress_feature.h -------------------------------------------------------------------------------- /services/bidding_service/egress_schema_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_schema_cache.cc -------------------------------------------------------------------------------- /services/bidding_service/egress_schema_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_schema_cache.h -------------------------------------------------------------------------------- /services/bidding_service/egress_schema_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_schema_cache_test.cc -------------------------------------------------------------------------------- /services/bidding_service/egress_schema_fetch_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/egress_schema_fetch_config.proto -------------------------------------------------------------------------------- /services/bidding_service/generate_bids_binary_reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/generate_bids_binary_reactor.cc -------------------------------------------------------------------------------- /services/bidding_service/generate_bids_binary_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/generate_bids_binary_reactor.h -------------------------------------------------------------------------------- /services/bidding_service/generate_bids_reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/generate_bids_reactor.cc -------------------------------------------------------------------------------- /services/bidding_service/generate_bids_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/generate_bids_reactor.h -------------------------------------------------------------------------------- /services/bidding_service/generate_bids_reactor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/generate_bids_reactor_test.cc -------------------------------------------------------------------------------- /services/bidding_service/inference/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/BUILD -------------------------------------------------------------------------------- /services/bidding_service/inference/inference_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/inference_flags.cc -------------------------------------------------------------------------------- /services/bidding_service/inference/inference_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/inference_flags.h -------------------------------------------------------------------------------- /services/bidding_service/inference/inference_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/inference_utils.cc -------------------------------------------------------------------------------- /services/bidding_service/inference/inference_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/inference_utils.h -------------------------------------------------------------------------------- /services/bidding_service/inference/model_fetcher_metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/inference/model_fetcher_metric.h -------------------------------------------------------------------------------- /services/bidding_service/runtime_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/runtime_flags.h -------------------------------------------------------------------------------- /services/bidding_service/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/BUILD -------------------------------------------------------------------------------- /services/bidding_service/utils/browser_signals_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/browser_signals_util.cc -------------------------------------------------------------------------------- /services/bidding_service/utils/browser_signals_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/browser_signals_util.h -------------------------------------------------------------------------------- /services/bidding_service/utils/egress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/egress.cc -------------------------------------------------------------------------------- /services/bidding_service/utils/egress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/egress.h -------------------------------------------------------------------------------- /services/bidding_service/utils/egress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/egress_test.cc -------------------------------------------------------------------------------- /services/bidding_service/utils/validation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/validation.cc -------------------------------------------------------------------------------- /services/bidding_service/utils/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/validation.h -------------------------------------------------------------------------------- /services/bidding_service/utils/validation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/bidding_service/utils/validation_test.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/BUILD -------------------------------------------------------------------------------- /services/buyer_frontend_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/buyer_frontend_service/buyer_frontend_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/buyer_frontend_main.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/buyer_frontend_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/buyer_frontend_service.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/buyer_frontend_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/buyer_frontend_service.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/data/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/data/BUILD -------------------------------------------------------------------------------- /services/buyer_frontend_service/data/bidding_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/data/bidding_signals.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/data/get_bids_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/data/get_bids_config.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/get_bids_unary_reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/get_bids_unary_reactor.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/get_bids_unary_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/get_bids_unary_reactor.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/providers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/providers/BUILD -------------------------------------------------------------------------------- /services/buyer_frontend_service/runtime_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/runtime_flags.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/util/BUILD -------------------------------------------------------------------------------- /services/buyer_frontend_service/util/bidding_signals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/util/bidding_signals.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/util/bidding_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/util/bidding_signals.h -------------------------------------------------------------------------------- /services/buyer_frontend_service/util/proto_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/util/proto_factory.cc -------------------------------------------------------------------------------- /services/buyer_frontend_service/util/proto_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/buyer_frontend_service/util/proto_factory.h -------------------------------------------------------------------------------- /services/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/BUILD -------------------------------------------------------------------------------- /services/common/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/aliases.h -------------------------------------------------------------------------------- /services/common/attestation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/BUILD -------------------------------------------------------------------------------- /services/common/attestation/adtech_enrollment_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/adtech_enrollment_cache.cc -------------------------------------------------------------------------------- /services/common/attestation/adtech_enrollment_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/adtech_enrollment_cache.h -------------------------------------------------------------------------------- /services/common/attestation/adtech_enrollment_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/adtech_enrollment_fetcher.cc -------------------------------------------------------------------------------- /services/common/attestation/adtech_enrollment_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/adtech_enrollment_fetcher.h -------------------------------------------------------------------------------- /services/common/attestation/attestation_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/attestation_util.h -------------------------------------------------------------------------------- /services/common/attestation/attestation_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/attestation/attestation_util_test.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/BUILD -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher.h -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_base.h -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_cpio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_cpio.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_cpio_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_cpio_test.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_mock.h -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_parc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_parc.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/blob_fetcher_parc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/blob_fetcher_parc_test.cc -------------------------------------------------------------------------------- /services/common/blob_fetch/fetch_mode.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_fetch/fetch_mode.proto -------------------------------------------------------------------------------- /services/common/blob_storage_client/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_storage_client/BUILD -------------------------------------------------------------------------------- /services/common/blob_storage_client/blob_storage_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/blob_storage_client/blob_storage_client.h -------------------------------------------------------------------------------- /services/common/cache/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/BUILD -------------------------------------------------------------------------------- /services/common/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/cache.h -------------------------------------------------------------------------------- /services/common/cache/cache_benchmarks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/cache_benchmarks.cc -------------------------------------------------------------------------------- /services/common/cache/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/cache_test.cc -------------------------------------------------------------------------------- /services/common/cache/doubly_linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/doubly_linked_list.h -------------------------------------------------------------------------------- /services/common/cache/doubly_linked_list_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/cache/doubly_linked_list_test.cc -------------------------------------------------------------------------------- /services/common/chaffing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/BUILD -------------------------------------------------------------------------------- /services/common/chaffing/mock_moving_median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/mock_moving_median.h -------------------------------------------------------------------------------- /services/common/chaffing/mock_moving_median_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/mock_moving_median_manager.h -------------------------------------------------------------------------------- /services/common/chaffing/moving_median.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/moving_median.cc -------------------------------------------------------------------------------- /services/common/chaffing/moving_median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/moving_median.h -------------------------------------------------------------------------------- /services/common/chaffing/moving_median_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/moving_median_manager.cc -------------------------------------------------------------------------------- /services/common/chaffing/moving_median_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/moving_median_manager.h -------------------------------------------------------------------------------- /services/common/chaffing/moving_median_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/moving_median_test.cc -------------------------------------------------------------------------------- /services/common/chaffing/transcoding_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/transcoding_utils.h -------------------------------------------------------------------------------- /services/common/chaffing/transcoding_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/chaffing/transcoding_utils_test.cc -------------------------------------------------------------------------------- /services/common/clients/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/BUILD -------------------------------------------------------------------------------- /services/common/clients/async_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/async_client.h -------------------------------------------------------------------------------- /services/common/clients/async_grpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/async_grpc/BUILD -------------------------------------------------------------------------------- /services/common/clients/async_grpc/grpc_client_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/async_grpc/grpc_client_utils.h -------------------------------------------------------------------------------- /services/common/clients/async_grpc/request_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/async_grpc/request_config.h -------------------------------------------------------------------------------- /services/common/clients/auction_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/auction_server/BUILD -------------------------------------------------------------------------------- /services/common/clients/bidding_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/bidding_server/BUILD -------------------------------------------------------------------------------- /services/common/clients/buyer_frontend_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/buyer_frontend_server/BUILD -------------------------------------------------------------------------------- /services/common/clients/client_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/client_factory.h -------------------------------------------------------------------------------- /services/common/clients/client_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/client_params.h -------------------------------------------------------------------------------- /services/common/clients/client_params_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/client_params_test.cc -------------------------------------------------------------------------------- /services/common/clients/code_dispatcher/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/code_dispatcher/BUILD -------------------------------------------------------------------------------- /services/common/clients/code_dispatcher/byob/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/code_dispatcher/byob/BUILD -------------------------------------------------------------------------------- /services/common/clients/code_dispatcher/request_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/code_dispatcher/request_context.h -------------------------------------------------------------------------------- /services/common/clients/code_dispatcher/v8_dispatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/code_dispatcher/v8_dispatcher.cc -------------------------------------------------------------------------------- /services/common/clients/code_dispatcher/v8_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/code_dispatcher/v8_dispatcher.h -------------------------------------------------------------------------------- /services/common/clients/config/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/config/BUILD -------------------------------------------------------------------------------- /services/common/clients/config/add_zone_aws.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/config/add_zone_aws.cc -------------------------------------------------------------------------------- /services/common/clients/config/add_zone_default.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/config/add_zone_default.cc -------------------------------------------------------------------------------- /services/common/clients/config/add_zone_gcp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/config/add_zone_gcp.cc -------------------------------------------------------------------------------- /services/common/clients/config/parc_parameter_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/config/parc_parameter_client.h -------------------------------------------------------------------------------- /services/common/clients/http/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/BUILD -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_data.cc -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_data.h -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_queue.cc -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_queue.h -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_queue_test.cc -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_worker.cc -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_worker.h -------------------------------------------------------------------------------- /services/common/clients/http/curl_request_worker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/curl_request_worker_test.cc -------------------------------------------------------------------------------- /services/common/clients/http/http_fetcher_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/http_fetcher_async.h -------------------------------------------------------------------------------- /services/common/clients/http/multi_curl_request_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http/multi_curl_request_manager.h -------------------------------------------------------------------------------- /services/common/clients/http_kv_server/buyer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http_kv_server/buyer/BUILD -------------------------------------------------------------------------------- /services/common/clients/http_kv_server/seller/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http_kv_server/seller/BUILD -------------------------------------------------------------------------------- /services/common/clients/http_kv_server/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/http_kv_server/util/BUILD -------------------------------------------------------------------------------- /services/common/clients/k_anon_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/k_anon_server/BUILD -------------------------------------------------------------------------------- /services/common/clients/k_anon_server/k_anon_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/k_anon_server/k_anon_client.cc -------------------------------------------------------------------------------- /services/common/clients/k_anon_server/k_anon_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/k_anon_server/k_anon_client.h -------------------------------------------------------------------------------- /services/common/clients/kv_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/BUILD -------------------------------------------------------------------------------- /services/common/clients/kv_server/benchmarking/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/benchmarking/BUILD -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_async_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_async_client.cc -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_async_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_async_client.h -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_async_client_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_async_client_test.cc -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_v2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_v2.cc -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_v2.h -------------------------------------------------------------------------------- /services/common/clients/kv_server/kv_v2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/kv_server/kv_v2_test.cc -------------------------------------------------------------------------------- /services/common/clients/seller_frontend_server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/clients/seller_frontend_server/BUILD -------------------------------------------------------------------------------- /services/common/code_dispatch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/code_dispatch/BUILD -------------------------------------------------------------------------------- /services/common/code_dispatch/code_dispatch_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/code_dispatch/code_dispatch_reactor.h -------------------------------------------------------------------------------- /services/common/compression/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/BUILD -------------------------------------------------------------------------------- /services/common/compression/compression_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/compression_utils.cc -------------------------------------------------------------------------------- /services/common/compression/compression_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/compression_utils.h -------------------------------------------------------------------------------- /services/common/compression/gzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/gzip.cc -------------------------------------------------------------------------------- /services/common/compression/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/gzip.h -------------------------------------------------------------------------------- /services/common/compression/gzip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/gzip_test.cc -------------------------------------------------------------------------------- /services/common/compression/zstd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/zstd.cc -------------------------------------------------------------------------------- /services/common/compression/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/compression/zstd.h -------------------------------------------------------------------------------- /services/common/concurrent/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/BUILD -------------------------------------------------------------------------------- /services/common/concurrent/local_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/local_cache.h -------------------------------------------------------------------------------- /services/common/concurrent/static_local_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/static_local_cache.h -------------------------------------------------------------------------------- /services/common/concurrent/static_local_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/static_local_cache_test.cc -------------------------------------------------------------------------------- /services/common/concurrent/thread_pool_executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/thread_pool_executor.cc -------------------------------------------------------------------------------- /services/common/concurrent/thread_pool_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/concurrent/thread_pool_executor.h -------------------------------------------------------------------------------- /services/common/constants/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/constants/BUILD -------------------------------------------------------------------------------- /services/common/constants/common_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/constants/common_constants.h -------------------------------------------------------------------------------- /services/common/constants/common_service_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/constants/common_service_flags.cc -------------------------------------------------------------------------------- /services/common/constants/common_service_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/constants/common_service_flags.h -------------------------------------------------------------------------------- /services/common/constants/user_error_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/constants/user_error_strings.h -------------------------------------------------------------------------------- /services/common/data_fetch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/BUILD -------------------------------------------------------------------------------- /services/common/data_fetch/fetcher_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/fetcher_interface.h -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_bucket_code_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_bucket_code_fetcher.h -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_bucket_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_bucket_fetcher.cc -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_bucket_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_bucket_fetcher.h -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_code_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_code_fetcher.cc -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_code_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_code_fetcher.h -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_code_fetcher_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_code_fetcher_test.cc -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_url_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_url_fetcher.cc -------------------------------------------------------------------------------- /services/common/data_fetch/periodic_url_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/periodic_url_fetcher.h -------------------------------------------------------------------------------- /services/common/data_fetch/version_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/version_util.h -------------------------------------------------------------------------------- /services/common/data_fetch/version_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/data_fetch/version_util_test.cc -------------------------------------------------------------------------------- /services/common/encryption/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/BUILD -------------------------------------------------------------------------------- /services/common/encryption/crypto_client_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/crypto_client_factory.cc -------------------------------------------------------------------------------- /services/common/encryption/crypto_client_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/crypto_client_factory.h -------------------------------------------------------------------------------- /services/common/encryption/crypto_client_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/crypto_client_wrapper.cc -------------------------------------------------------------------------------- /services/common/encryption/crypto_client_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/crypto_client_wrapper.h -------------------------------------------------------------------------------- /services/common/encryption/crypto_client_wrapper_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/crypto_client_wrapper_test.cc -------------------------------------------------------------------------------- /services/common/encryption/key_fetcher_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/key_fetcher_factory.cc -------------------------------------------------------------------------------- /services/common/encryption/key_fetcher_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/key_fetcher_factory.h -------------------------------------------------------------------------------- /services/common/encryption/mock_crypto_client_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/encryption/mock_crypto_client_wrapper.h -------------------------------------------------------------------------------- /services/common/feature_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/feature_flags.cc -------------------------------------------------------------------------------- /services/common/feature_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/feature_flags.h -------------------------------------------------------------------------------- /services/common/loggers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/BUILD -------------------------------------------------------------------------------- /services/common/loggers/benchmarking_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/benchmarking_logger.cc -------------------------------------------------------------------------------- /services/common/loggers/benchmarking_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/benchmarking_logger.h -------------------------------------------------------------------------------- /services/common/loggers/no_ops_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/no_ops_logger.h -------------------------------------------------------------------------------- /services/common/loggers/request_log_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/request_log_context.h -------------------------------------------------------------------------------- /services/common/loggers/request_log_context_non_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/request_log_context_non_prod.cc -------------------------------------------------------------------------------- /services/common/loggers/request_log_context_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/request_log_context_prod.cc -------------------------------------------------------------------------------- /services/common/loggers/request_log_context_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/request_log_context_prod_test.cc -------------------------------------------------------------------------------- /services/common/loggers/source_location_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/source_location_context.h -------------------------------------------------------------------------------- /services/common/loggers/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/timer.cc -------------------------------------------------------------------------------- /services/common/loggers/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/loggers/timer.h -------------------------------------------------------------------------------- /services/common/metric/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/BUILD -------------------------------------------------------------------------------- /services/common/metric/error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/error_code.h -------------------------------------------------------------------------------- /services/common/metric/roma_metric_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/roma_metric_utils.h -------------------------------------------------------------------------------- /services/common/metric/roma_metric_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/roma_metric_utils_test.cc -------------------------------------------------------------------------------- /services/common/metric/server_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/server_definition.h -------------------------------------------------------------------------------- /services/common/metric/server_definition_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/server_definition_test.cc -------------------------------------------------------------------------------- /services/common/metric/udf_metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/metric/udf_metric.h -------------------------------------------------------------------------------- /services/common/private_aggregation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/private_aggregation/BUILD -------------------------------------------------------------------------------- /services/common/private_aggregation/js/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/private_aggregation/js/BUILD -------------------------------------------------------------------------------- /services/common/providers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/providers/BUILD -------------------------------------------------------------------------------- /services/common/providers/async_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/providers/async_provider.h -------------------------------------------------------------------------------- /services/common/public_key_url_allowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/public_key_url_allowlist.h -------------------------------------------------------------------------------- /services/common/random/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/random/BUILD -------------------------------------------------------------------------------- /services/common/random/mock_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/random/mock_rng.h -------------------------------------------------------------------------------- /services/common/random/rng.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/random/rng.cc -------------------------------------------------------------------------------- /services/common/random/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/random/rng.h -------------------------------------------------------------------------------- /services/common/reporters/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/reporters/BUILD -------------------------------------------------------------------------------- /services/common/reporters/async_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/reporters/async_reporter.cc -------------------------------------------------------------------------------- /services/common/reporters/async_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/reporters/async_reporter.h -------------------------------------------------------------------------------- /services/common/reporters/async_reporter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/reporters/async_reporter_test.cc -------------------------------------------------------------------------------- /services/common/telemetry/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/telemetry/BUILD -------------------------------------------------------------------------------- /services/common/telemetry/configure_telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/telemetry/configure_telemetry.h -------------------------------------------------------------------------------- /services/common/telemetry/configure_telemetry_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/telemetry/configure_telemetry_test.cc -------------------------------------------------------------------------------- /services/common/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/BUILD -------------------------------------------------------------------------------- /services/common/test/artifacts/grpc_tls/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/artifacts/grpc_tls/localhost.key -------------------------------------------------------------------------------- /services/common/test/artifacts/grpc_tls/localhost.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/artifacts/grpc_tls/localhost.pem -------------------------------------------------------------------------------- /services/common/test/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/constants.h -------------------------------------------------------------------------------- /services/common/test/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/mocks.h -------------------------------------------------------------------------------- /services/common/test/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/random.cc -------------------------------------------------------------------------------- /services/common/test/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/random.h -------------------------------------------------------------------------------- /services/common/test/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/BUILD -------------------------------------------------------------------------------- /services/common/test/utils/cbor_test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/cbor_test_utils.cc -------------------------------------------------------------------------------- /services/common/test/utils/cbor_test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/cbor_test_utils.h -------------------------------------------------------------------------------- /services/common/test/utils/ohttp_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/ohttp_utils.cc -------------------------------------------------------------------------------- /services/common/test/utils/ohttp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/ohttp_utils.h -------------------------------------------------------------------------------- /services/common/test/utils/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/proto_utils.h -------------------------------------------------------------------------------- /services/common/test/utils/service_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/service_utils.h -------------------------------------------------------------------------------- /services/common/test/utils/test_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/test_init.h -------------------------------------------------------------------------------- /services/common/test/utils/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/test_utils.cc -------------------------------------------------------------------------------- /services/common/test/utils/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/test/utils/test_utils.h -------------------------------------------------------------------------------- /services/common/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/BUILD -------------------------------------------------------------------------------- /services/common/util/async_task_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/async_task_tracker.cc -------------------------------------------------------------------------------- /services/common/util/async_task_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/async_task_tracker.h -------------------------------------------------------------------------------- /services/common/util/async_task_tracker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/async_task_tracker_test.cc -------------------------------------------------------------------------------- /services/common/util/auction_scope_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/auction_scope_util.cc -------------------------------------------------------------------------------- /services/common/util/auction_scope_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/auction_scope_util.h -------------------------------------------------------------------------------- /services/common/util/auction_scope_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/auction_scope_util_test.cc -------------------------------------------------------------------------------- /services/common/util/blob_storage_client_cpio_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/blob_storage_client_cpio_utils.cc -------------------------------------------------------------------------------- /services/common/util/blob_storage_client_parc_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/blob_storage_client_parc_utils.cc -------------------------------------------------------------------------------- /services/common/util/blob_storage_client_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/blob_storage_client_utils.h -------------------------------------------------------------------------------- /services/common/util/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/build_info.h -------------------------------------------------------------------------------- /services/common/util/cancellation_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/cancellation_wrapper.h -------------------------------------------------------------------------------- /services/common/util/client_context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/client_context_util.h -------------------------------------------------------------------------------- /services/common/util/client_contexts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/client_contexts.cc -------------------------------------------------------------------------------- /services/common/util/client_contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/client_contexts.h -------------------------------------------------------------------------------- /services/common/util/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/constants.h -------------------------------------------------------------------------------- /services/common/util/data_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/data_util.h -------------------------------------------------------------------------------- /services/common/util/data_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/data_util_test.cc -------------------------------------------------------------------------------- /services/common/util/error_accumulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/error_accumulator.cc -------------------------------------------------------------------------------- /services/common/util/error_accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/error_accumulator.h -------------------------------------------------------------------------------- /services/common/util/error_accumulator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/error_accumulator_test.cc -------------------------------------------------------------------------------- /services/common/util/error_categories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/error_categories.h -------------------------------------------------------------------------------- /services/common/util/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/error_reporter.h -------------------------------------------------------------------------------- /services/common/util/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/event.cc -------------------------------------------------------------------------------- /services/common/util/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/event.h -------------------------------------------------------------------------------- /services/common/util/event_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/event_base.cc -------------------------------------------------------------------------------- /services/common/util/event_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/event_base.h -------------------------------------------------------------------------------- /services/common/util/file_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/file_util.cc -------------------------------------------------------------------------------- /services/common/util/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/file_util.h -------------------------------------------------------------------------------- /services/common/util/generate_build_info_cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/generate_build_info_cc -------------------------------------------------------------------------------- /services/common/util/hash_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hash_util.cc -------------------------------------------------------------------------------- /services/common/util/hash_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hash_util.h -------------------------------------------------------------------------------- /services/common/util/hash_util_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hash_util_interface.h -------------------------------------------------------------------------------- /services/common/util/hash_util_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hash_util_mock.h -------------------------------------------------------------------------------- /services/common/util/hash_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hash_util_test.cc -------------------------------------------------------------------------------- /services/common/util/hpke_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hpke_utils.cc -------------------------------------------------------------------------------- /services/common/util/hpke_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hpke_utils.h -------------------------------------------------------------------------------- /services/common/util/hpke_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/hpke_utils_test.cc -------------------------------------------------------------------------------- /services/common/util/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/json_util.h -------------------------------------------------------------------------------- /services/common/util/json_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/json_util_test.cc -------------------------------------------------------------------------------- /services/common/util/map_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/map_utils.h -------------------------------------------------------------------------------- /services/common/util/map_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/map_utils_test.cc -------------------------------------------------------------------------------- /services/common/util/oblivious_http_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/oblivious_http_utils.cc -------------------------------------------------------------------------------- /services/common/util/oblivious_http_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/oblivious_http_utils.h -------------------------------------------------------------------------------- /services/common/util/oblivious_http_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/oblivious_http_utils_test.cc -------------------------------------------------------------------------------- /services/common/util/post_auction_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/post_auction_signals.h -------------------------------------------------------------------------------- /services/common/util/priority_vector/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/priority_vector/BUILD -------------------------------------------------------------------------------- /services/common/util/proto_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/proto_util.h -------------------------------------------------------------------------------- /services/common/util/proto_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/proto_util_test.cc -------------------------------------------------------------------------------- /services/common/util/random_number_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/random_number_generator.cc -------------------------------------------------------------------------------- /services/common/util/random_number_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/random_number_generator.h -------------------------------------------------------------------------------- /services/common/util/random_number_generator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/random_number_generator_test.cc -------------------------------------------------------------------------------- /services/common/util/read_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/read_system.cc -------------------------------------------------------------------------------- /services/common/util/read_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/read_system.h -------------------------------------------------------------------------------- /services/common/util/read_system_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/read_system_test.cc -------------------------------------------------------------------------------- /services/common/util/reporting_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/reporting_util.cc -------------------------------------------------------------------------------- /services/common/util/reporting_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/reporting_util.h -------------------------------------------------------------------------------- /services/common/util/reporting_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/reporting_util_test.cc -------------------------------------------------------------------------------- /services/common/util/request_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/request_metadata.cc -------------------------------------------------------------------------------- /services/common/util/request_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/request_metadata.h -------------------------------------------------------------------------------- /services/common/util/request_metadata_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/request_metadata_test.cc -------------------------------------------------------------------------------- /services/common/util/request_response_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/request_response_constants.h -------------------------------------------------------------------------------- /services/common/util/scoped_cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/scoped_cbor.h -------------------------------------------------------------------------------- /services/common/util/scoped_cbor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/scoped_cbor_test.cc -------------------------------------------------------------------------------- /services/common/util/signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/signal_handler.h -------------------------------------------------------------------------------- /services/common/util/signal_handler_non_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/signal_handler_non_prod.cc -------------------------------------------------------------------------------- /services/common/util/signal_handler_prod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/signal_handler_prod.cc -------------------------------------------------------------------------------- /services/common/util/status_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/status_utils.h -------------------------------------------------------------------------------- /services/common/util/status_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/status_utils_test.cc -------------------------------------------------------------------------------- /services/common/util/tcmalloc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/tcmalloc_utils.h -------------------------------------------------------------------------------- /services/common/util/thread_safe_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/thread_safe_set.h -------------------------------------------------------------------------------- /services/common/util/thread_safe_set_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/common/util/thread_safe_set_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/README.md -------------------------------------------------------------------------------- /services/inference_sidecar/common/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/.bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/common/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.0 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/.gitignore -------------------------------------------------------------------------------- /services/inference_sidecar/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/README.md -------------------------------------------------------------------------------- /services/inference_sidecar/common/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/WORKSPACE -------------------------------------------------------------------------------- /services/inference_sidecar/common/benchmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/benchmark/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/.gitignore -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/.prettierignore: -------------------------------------------------------------------------------- 1 | /.git/ 2 | /CHANGELOG.md 3 | /google_internal/LATEST_RELEASE.md 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | etc/.prettierrc.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/.versionrc.json: -------------------------------------------------------------------------------- 1 | etc/.versionrc.json -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/CHANGELOG.md -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/LICENSE -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/README.md -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/bazel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/bazel/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/bazel/deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/bazel/deps.bzl -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/etc/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.4.1 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-amazonlinux2023/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/build-debian/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/gitconfig: -------------------------------------------------------------------------------- 1 | [safe] 2 | directory = /src/workspace 3 | -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/presubmit/.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ../../etc/.pre-commit-config.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/presubmit/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/presubmit/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/images/release/gitconfig: -------------------------------------------------------------------------------- 1 | [user] 2 | email = nobody@google.com 3 | name = Privacy Sandbox Release System 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/ab: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/aws-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/tools/aws-cli -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/awscurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/tools/awscurl -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/bazel-amazonlinux2: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/bazel-amazonlinux2023: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/buildozer: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/cassowary: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/cbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/tools/cbuild -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/commit-and-tag-version: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/coverage-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/curl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/genhtml: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/ghz: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/google-pprof: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/grpcurl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/h2load: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/hadolint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/builders/tools/hadolint -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/jq: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/lcov: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/release-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/slowhttptest: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/unzip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/utils-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/wrk2: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/tools/zip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/common/builders/version.txt: -------------------------------------------------------------------------------- 1 | 0.55.1 -------------------------------------------------------------------------------- /services/inference_sidecar/common/grpc_sidecar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/grpc_sidecar.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/grpc_sidecar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/grpc_sidecar.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/grpc_sidecar_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/grpc_sidecar_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/ipc_sidecar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/ipc_sidecar.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/ipc_sidecar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/ipc_sidecar.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/model/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/model/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/model/model_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/model/model_store.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/model/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/model/validator.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/model/validator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/model/validator_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/modules/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/modules/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/modules/test_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/modules/test_module.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/modules/test_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/modules/test_module.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/proto/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/proto/testproto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/proto/testproto.proto -------------------------------------------------------------------------------- /services/inference_sidecar/common/sandbox/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/sandbox/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/test_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/test_constants.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/testdata/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/testdata/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/third_party/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/third_party/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/tools/collect-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/tools/collect-logs -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/cpu.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/cpu.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/cpu_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/cpu_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/error.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/error.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/error_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/error_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/file_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/file_util.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/file_util.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/json_util.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/log.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/log_test.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/request_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/request_parser.cc -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/request_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/request_parser.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/tcmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/tcmalloc.h -------------------------------------------------------------------------------- /services/inference_sidecar/common/utils/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/common/utils/test_util.h -------------------------------------------------------------------------------- /services/inference_sidecar/modules/.gitignore: -------------------------------------------------------------------------------- 1 | **/artifacts 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.0 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/inference_sidecar/modules/pytorch_v2_1_1/BUILD -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/.prettierignore: -------------------------------------------------------------------------------- 1 | /.git/ 2 | /CHANGELOG.md 3 | /google_internal/LATEST_RELEASE.md 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | etc/.prettierrc.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/.versionrc.json: -------------------------------------------------------------------------------- 1 | etc/.versionrc.json -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/etc/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.4.1 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-amazonlinux2023/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/build-debian/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/gitconfig: -------------------------------------------------------------------------------- 1 | [safe] 2 | directory = /src/workspace 3 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/presubmit/.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ../../etc/.pre-commit-config.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/presubmit/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/presubmit/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/images/release/gitconfig: -------------------------------------------------------------------------------- 1 | [user] 2 | email = nobody@google.com 3 | name = Privacy Sandbox Release System 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/ab: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/bazel-amazonlinux2: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/bazel-amazonlinux2023: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/buildozer: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/cassowary: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/commit-and-tag-version: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/coverage-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/curl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/genhtml: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/ghz: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/google-pprof: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/grpcurl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/h2load: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/jq: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/lcov: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/release-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/slowhttptest: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/unzip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/utils-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/wrk2: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/tools/zip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/pytorch_v2_1_1/builders/version.txt: -------------------------------------------------------------------------------- 1 | 0.55.1 -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.0 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- 1 | etc/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/.prettierignore: -------------------------------------------------------------------------------- 1 | /.git/ 2 | /CHANGELOG.md 3 | /google_internal/LATEST_RELEASE.md 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | etc/.prettierrc.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/.versionrc.json: -------------------------------------------------------------------------------- 1 | etc/.versionrc.json -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/etc/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.4.1 2 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-amazonlinux2023/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/.bazelversion: -------------------------------------------------------------------------------- 1 | ../../etc/.bazelversion -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/generate_system_bazelrc: -------------------------------------------------------------------------------- 1 | ../generate_system_bazelrc -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/get_workspace_mount: -------------------------------------------------------------------------------- 1 | ../get_workspace_mount -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/build-debian/install_golang_apps: -------------------------------------------------------------------------------- 1 | ../install_golang_apps -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/gitconfig: -------------------------------------------------------------------------------- 1 | [safe] 2 | directory = /src/workspace 3 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/presubmit/.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | ../../etc/.pre-commit-config.yaml -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/presubmit/gitconfig: -------------------------------------------------------------------------------- 1 | ../gitconfig -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/presubmit/install_go.sh: -------------------------------------------------------------------------------- 1 | ../install_go.sh -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/images/release/gitconfig: -------------------------------------------------------------------------------- 1 | [user] 2 | email = nobody@google.com 3 | name = Privacy Sandbox Release System 4 | -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/ab: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/bazel-amazonlinux2: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/bazel-amazonlinux2023: -------------------------------------------------------------------------------- 1 | bazel-debian -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/buildozer: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/cassowary: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/commit-and-tag-version: -------------------------------------------------------------------------------- 1 | release-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/coverage-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/curl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/genhtml: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/ghz: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/google-pprof: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/grpcurl: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/h2load: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/jq: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/lcov: -------------------------------------------------------------------------------- 1 | coverage-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/release-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/slowhttptest: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/unzip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/utils-tool: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/wrk2: -------------------------------------------------------------------------------- 1 | test-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/tools/zip: -------------------------------------------------------------------------------- 1 | utils-tool -------------------------------------------------------------------------------- /services/inference_sidecar/modules/tensorflow_v2_17_0/builders/version.txt: -------------------------------------------------------------------------------- 1 | 0.55.1 -------------------------------------------------------------------------------- /services/seller_frontend_service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/seller_frontend_service/benchmarking/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/benchmarking/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/data/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/data/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/data/k_anon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/data/k_anon.h -------------------------------------------------------------------------------- /services/seller_frontend_service/data/scoring_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/data/scoring_signals.h -------------------------------------------------------------------------------- /services/seller_frontend_service/k_anon/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/k_anon/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/k_anon/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/k_anon/constants.h -------------------------------------------------------------------------------- /services/seller_frontend_service/k_anon/k_anon_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/k_anon/k_anon_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/k_anon/k_anon_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/k_anon/k_anon_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/providers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/providers/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/report_win_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/report_win_map.h -------------------------------------------------------------------------------- /services/seller_frontend_service/runtime_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/runtime_flags.h -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor.h -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor_app.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor_app.h -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor_web.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor_web.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/select_ad_reactor_web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/select_ad_reactor_web.h -------------------------------------------------------------------------------- /services/seller_frontend_service/seller_frontend_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/seller_frontend_main.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/test/app_test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/app_test_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/test/app_test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/app_test_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/test/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/constants.h -------------------------------------------------------------------------------- /services/seller_frontend_service/test/kanon_test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/kanon_test_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/test/kanon_test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/test/kanon_test_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/BUILD -------------------------------------------------------------------------------- /services/seller_frontend_service/util/cbor_common_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/cbor_common_util.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/cbor_common_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/cbor_common_util.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/chaffing_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/chaffing_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/chaffing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/chaffing_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/encryption_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/encryption_util.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/encryption_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/encryption_util.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/framing_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/framing_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/framing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/framing_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/key_fetcher_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/key_fetcher_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/validation_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/validation_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/validation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/validation_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/web_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/web_utils.cc -------------------------------------------------------------------------------- /services/seller_frontend_service/util/web_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/web_utils.h -------------------------------------------------------------------------------- /services/seller_frontend_service/util/web_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/services/seller_frontend_service/util/web_utils_test.cc -------------------------------------------------------------------------------- /third_party/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/BUILD -------------------------------------------------------------------------------- /third_party/cddl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/BUILD -------------------------------------------------------------------------------- /third_party/cddl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/BUILD.bazel -------------------------------------------------------------------------------- /third_party/cddl/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/Cargo.lock -------------------------------------------------------------------------------- /third_party/cddl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/Cargo.toml -------------------------------------------------------------------------------- /third_party/cddl/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/WORKSPACE -------------------------------------------------------------------------------- /third_party/cddl/cargo-bazel-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/cargo-bazel-lock.json -------------------------------------------------------------------------------- /third_party/cddl/cddl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/cddl.BUILD -------------------------------------------------------------------------------- /third_party/cddl/cddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/cddl.h -------------------------------------------------------------------------------- /third_party/cddl/cddl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cddl/cddl.patch -------------------------------------------------------------------------------- /third_party/container_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/container_deps.bzl -------------------------------------------------------------------------------- /third_party/cpp_proto_builder/cpp_proto_builder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/cpp_proto_builder/cpp_proto_builder.patch -------------------------------------------------------------------------------- /third_party/deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/deps.bzl -------------------------------------------------------------------------------- /third_party/differential_privacy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/differential_privacy.patch -------------------------------------------------------------------------------- /third_party/googleapis.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/googleapis.BUILD -------------------------------------------------------------------------------- /third_party/libcbor.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libcbor.BUILD -------------------------------------------------------------------------------- /third_party/libcbor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libcbor.patch -------------------------------------------------------------------------------- /third_party/libevent-evconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libevent-evconfig.patch -------------------------------------------------------------------------------- /third_party/libevent.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libevent.BUILD -------------------------------------------------------------------------------- /third_party/libevent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libevent.patch -------------------------------------------------------------------------------- /third_party/libtld/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/BUILD -------------------------------------------------------------------------------- /third_party/libtld/tld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld.cpp -------------------------------------------------------------------------------- /third_party/libtld/tld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld.h -------------------------------------------------------------------------------- /third_party/libtld/tld_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_data.c -------------------------------------------------------------------------------- /third_party/libtld/tld_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_data.h -------------------------------------------------------------------------------- /third_party/libtld/tld_domain_to_lowercase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_domain_to_lowercase.c -------------------------------------------------------------------------------- /third_party/libtld/tld_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_file.cpp -------------------------------------------------------------------------------- /third_party/libtld/tld_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_file.h -------------------------------------------------------------------------------- /third_party/libtld/tld_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/libtld/tld_strings.c -------------------------------------------------------------------------------- /third_party/zstd.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/third_party/zstd.BUILD -------------------------------------------------------------------------------- /tools/collect-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/collect-logs -------------------------------------------------------------------------------- /tools/cost_estimation/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/.bazelrc -------------------------------------------------------------------------------- /tools/cost_estimation/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | -------------------------------------------------------------------------------- /tools/cost_estimation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/BUILD -------------------------------------------------------------------------------- /tools/cost_estimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/README.md -------------------------------------------------------------------------------- /tools/cost_estimation/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/WORKSPACE -------------------------------------------------------------------------------- /tools/cost_estimation/cost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/cost.yaml -------------------------------------------------------------------------------- /tools/cost_estimation/cost_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/cost_tool.py -------------------------------------------------------------------------------- /tools/cost_estimation/cost_tool_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/cost_tool_test.py -------------------------------------------------------------------------------- /tools/cost_estimation/docker_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/docker_files/Dockerfile -------------------------------------------------------------------------------- /tools/cost_estimation/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/estimator.py -------------------------------------------------------------------------------- /tools/cost_estimation/estimator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/estimator_test.py -------------------------------------------------------------------------------- /tools/cost_estimation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/main.py -------------------------------------------------------------------------------- /tools/cost_estimation/metrics_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/metrics_loader.py -------------------------------------------------------------------------------- /tools/cost_estimation/metrics_loader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/metrics_loader_test.py -------------------------------------------------------------------------------- /tools/cost_estimation/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/render.py -------------------------------------------------------------------------------- /tools/cost_estimation/render_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/render_test.py -------------------------------------------------------------------------------- /tools/cost_estimation/requirements_lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/requirements_lock.txt -------------------------------------------------------------------------------- /tools/cost_estimation/run_in_docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/run_in_docker -------------------------------------------------------------------------------- /tools/cost_estimation/sku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/sku.json -------------------------------------------------------------------------------- /tools/cost_estimation/sql_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/sql_expr.py -------------------------------------------------------------------------------- /tools/cost_estimation/sql_expr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/sql_expr_test.py -------------------------------------------------------------------------------- /tools/cost_estimation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/utils.py -------------------------------------------------------------------------------- /tools/cost_estimation/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/cost_estimation/utils_test.py -------------------------------------------------------------------------------- /tools/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/README.md -------------------------------------------------------------------------------- /tools/debug/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/common -------------------------------------------------------------------------------- /tools/debug/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/envoy.yaml -------------------------------------------------------------------------------- /tools/debug/start_auction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/start_auction -------------------------------------------------------------------------------- /tools/debug/start_bfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/start_bfe -------------------------------------------------------------------------------- /tools/debug/start_bidding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/start_bidding -------------------------------------------------------------------------------- /tools/debug/start_bidding_byob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/start_bidding_byob -------------------------------------------------------------------------------- /tools/debug/start_sfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/debug/start_sfe -------------------------------------------------------------------------------- /tools/get_workspace_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/get_workspace_status -------------------------------------------------------------------------------- /tools/load_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/load_testing/README.md -------------------------------------------------------------------------------- /tools/secure_invoke/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/BUILD -------------------------------------------------------------------------------- /tools/secure_invoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/README.md -------------------------------------------------------------------------------- /tools/secure_invoke/flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/flags.cc -------------------------------------------------------------------------------- /tools/secure_invoke/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/flags.h -------------------------------------------------------------------------------- /tools/secure_invoke/payload_generator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/payload_generator/BUILD -------------------------------------------------------------------------------- /tools/secure_invoke/payload_generator/payload_packaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/payload_generator/payload_packaging.h -------------------------------------------------------------------------------- /tools/secure_invoke/secure_invoke.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/secure_invoke.cc -------------------------------------------------------------------------------- /tools/secure_invoke/secure_invoke_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/secure_invoke_lib.cc -------------------------------------------------------------------------------- /tools/secure_invoke/secure_invoke_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/secure_invoke_lib.h -------------------------------------------------------------------------------- /tools/secure_invoke/secure_invoke_lib_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/secure_invoke/secure_invoke_lib_test.cc -------------------------------------------------------------------------------- /tools/udf/generate_bid/byob_sdk/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/udf/generate_bid/byob_sdk/BUILD -------------------------------------------------------------------------------- /tools/udf/generate_bid/byob_sdk/docs/requests/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/udf/generate_bid/byob_sdk/docs/requests/sample.json -------------------------------------------------------------------------------- /tools/udf/generate_bid/samples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/udf/generate_bid/samples/BUILD -------------------------------------------------------------------------------- /tools/udf/generate_bid/samples/sample_generate_bid_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privacysandbox/bidding-auction-servers/HEAD/tools/udf/generate_bid/samples/sample_generate_bid_udf.cc -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 4.10.0 --------------------------------------------------------------------------------