diff options
| author | 2023-11-13 22:00:33 +0000 | |
|---|---|---|
| committer | 2023-11-13 22:24:28 +0000 | |
| commit | fc9ba4aa6ed6a5559c79b7eec15fe943ce98dac1 (patch) | |
| tree | 8a02b3d2f9ae7551c75cf1ba5122adb6c51c8095 | |
| parent | c79d8a7487e779fc1628b44082797e5bb4b0c18b (diff) | |
New aconfig flag for coroutine tracing
Test: atest SystemUI
Bug: 289353932
Flag: ACONFIG com.android.systemui.coroutine_tracing DISABLED
Change-Id: I78a9132489df5adf25de5d61f46945e581d8f5e8
| -rw-r--r-- | packages/SystemUI/aconfig/systemui.aconfig | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/packages/SystemUI/aconfig/systemui.aconfig b/packages/SystemUI/aconfig/systemui.aconfig index aebdaaba3ce1..e340209afbb8 100644 --- a/packages/SystemUI/aconfig/systemui.aconfig +++ b/packages/SystemUI/aconfig/systemui.aconfig @@ -107,8 +107,16 @@ flag { } flag { - name: "qs_new_pipeline" - namespace: "systemui" - description: "Use the new pipeline for Quick Settings. Should have no behavior changes." - bug: "241772429" + name: "qs_new_pipeline" + namespace: "systemui" + description: "Use the new pipeline for Quick Settings. Should have no behavior changes." + bug: "241772429" } + +flag { + name: "coroutine_tracing" + namespace: "systemui" + description: "Adds thread-local data to System UI's global coroutine scopes to " + "allow for tracing of coroutine continuations using System UI's tracinglib" + bug: "289353932" +}
\ No newline at end of file |