Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb7b5c73 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13316154 from e835c3b4 to 25Q3-release

Change-Id: I63ddae6597867b761225996251bff7db63ca5419
parents efaa2fd4 e835c3b4
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1772,9 +1772,17 @@ aconfig_declarations {
    name: "android.systemserver.flags-aconfig",
    package: "android.server",
    container: "system",
    exportable: true,
    srcs: ["services/java/com/android/server/flags.aconfig"],
}

java_aconfig_library {
    name: "android.systemserver.flags-aconfig-java-export",
    aconfig_declarations: "android.systemserver.flags-aconfig",
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
    mode: "exported",
}

java_aconfig_library {
    name: "android.systemserver.flags-aconfig-java",
    aconfig_declarations: "android.systemserver.flags-aconfig",
+1 −0
Original line number Diff line number Diff line
# OWNERS of BatteryStats related files
dhavalc@google.com
dplotnikov@google.com
mwachens@google.com
+51 −0
Original line number Diff line number Diff line
@@ -291,3 +291,54 @@ cc_library {
        },
    },
}

// ====  rust proto library  ==============================
rust_protobuf {
    name: "libframework_privacy_protos_rs",
    protos: [
        "core/proto/android/privacy.proto",
    ],
    crate_name: "framework_privacy_protos_rs",
    source_stem: "framework_privacy_protos_rs_source",
    header_libs: ["libprotobuf-cpp-lite"],
    proto_flags: [
        "-I external/protobuf/src",
    ],
    host_supported: true,
}

rust_protobuf {
    name: "libframework_component_name_protos_rs",
    protos: [
        "core/proto/android/content/component_name.proto",
    ],
    rustlibs: [
        "libframework_privacy_protos_rs",
    ],
    crate_name: "framework_component_name_protos_rs",
    source_stem: "framework_component_name_protos_rs_source",
    proto_flags: [
        "-I .",
        "-I external/protobuf/src",
    ],
    host_supported: true,
}

rust_protobuf {
    name: "libframework_usb_protos_rs",
    protos: [
        "core/proto/android/service/usb.proto",
    ],
    rustlibs: [
        "libframework_service_enums_protos_rs",
        "libframework_privacy_protos_rs",
        "libframework_component_name_protos_rs",
    ],
    crate_name: "framework_usb_protos_rs",
    source_stem: "framework_usb_protos_rs_source",
    proto_flags: [
        "-I .",
        "-I external/protobuf/src",
    ],
    host_supported: true,
}
+14 −0
Original line number Diff line number Diff line
@@ -419,6 +419,20 @@ filegroup {
    ],
}

filegroup {
    name: "activity_manager_iprocessobserver_aidl",
    srcs: [
        "android/app/IProcessObserver.aidl",
    ],
}

filegroup {
    name: "activity_manager_runningappprocessinfo_aidl",
    srcs: [
        "android/app/RunningAppProcessInfo.aidl",
    ],
}

filegroup {
    name: "hwbinder-stubs-srcs",
    srcs: [
+0 −7
Original line number Diff line number Diff line
package: "android.adaptiveauth"
container: "system"

flag {
  name: "enable_adaptive_auth"
  namespace: "biometrics"
  description: "Feature flag for enabling the new adaptive auth service"
  bug: "285053096"
}

flag {
  name: "report_biometric_auth_attempts"
  namespace: "biometrics"
Loading