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

Commit 201c44fc authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add aconfig flagging setup" into main

parents 19a115c0 98a75be1
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ aconfig_declarations_group {
        "android.app.appfunctions.flags-aconfig-java",
        "android.app.contextualsearch.flags-aconfig-java",
        "android.app.flags-aconfig-java",
        "android.app.jank.flags-aconfig-java",
        "android.app.ondeviceintelligence-aconfig-java",
        "android.app.smartspace.flags-aconfig-java",
        "android.app.supervision.flags-aconfig-java",
@@ -1606,3 +1607,17 @@ java_aconfig_library {
    aconfig_declarations: "interaction_jank_monitor_flags",
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
}

// App Jank
aconfig_declarations {
    name: "android.app.jank.flags-aconfig",
    package: "android.app.jank",
    container: "system",
    srcs: ["core/java/android/app/jank/flags.aconfig"],
}

java_aconfig_library {
    name: "android.app.jank.flags-aconfig-java",
    aconfig_declarations: "android.app.jank.flags-aconfig",
    defaults: ["framework-minus-apex-aconfig-java-defaults"],
}
+16 −0
Original line number Diff line number Diff line
package: "android.app.jank"
container: "system"

flag {
  name: "detailed_app_jank_metrics_api"
  namespace: "system_performance"
  description: "Control the API portion of Detailed Application Jank Metrics"
  bug: "366264614"
}

flag {
  name: "detailed_app_jank_metrics_logging_enabled"
  namespace: "system_performance"
  description: "Controls whether the system will log frame metrics related to app jank"
  bug: "366265225"
}
 No newline at end of file