Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2018 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
Bob Badour | 8a6a2bc | 2021-02-12 17:07:05 -0800 | [diff] [blame] | 17 | package { |
| 18 | default_applicable_licenses: ["frameworks_base_packages_SystemUI_license"], |
| 19 | } |
| 20 | |
| 21 | // Added automatically by a large-scale-change |
| 22 | // See: http://go/android-license-faq |
| 23 | license { |
| 24 | name: "frameworks_base_packages_SystemUI_license", |
| 25 | visibility: [":__subpackages__"], |
| 26 | license_kinds: [ |
| 27 | "SPDX-license-identifier-Apache-2.0", |
| 28 | ], |
| 29 | license_text: [ |
| 30 | "NOTICE", |
| 31 | ], |
| 32 | } |
| 33 | |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 34 | java_library { |
| 35 | name: "SystemUI-proto", |
| 36 | |
| 37 | srcs: ["src/**/*.proto"], |
| 38 | |
| 39 | proto: { |
| 40 | type: "nano", |
| 41 | }, |
Winson Chung | eb1aa3d | 2020-08-25 19:02:29 -0700 | [diff] [blame] | 42 | |
| 43 | libs: [ |
| 44 | "WindowManager-Shell-proto", |
| 45 | ], |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | java_library { |
| 49 | name: "SystemUI-tags", |
| 50 | srcs: ["src/com/android/systemui/EventLogTags.logtags"], |
| 51 | } |
| 52 | |
Jay Aliomer | 97d4fc7d | 2021-09-23 16:59:09 -0400 | [diff] [blame] | 53 | filegroup { |
| 54 | name: "ReleaseJavaFiles", |
Jeff DeCew | 86b8e77 | 2021-10-25 20:35:45 -0400 | [diff] [blame] | 55 | srcs: [ |
| 56 | "src-release/**/*.kt", |
| 57 | "src-release/**/*.java", |
| 58 | ], |
Jay Aliomer | 97d4fc7d | 2021-09-23 16:59:09 -0400 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | filegroup { |
| 62 | name: "DebugJavaFiles", |
Jeff DeCew | 86b8e77 | 2021-10-25 20:35:45 -0400 | [diff] [blame] | 63 | srcs: [ |
| 64 | "src-debug/**/*.kt", |
| 65 | "src-debug/**/*.java", |
| 66 | ], |
Jay Aliomer | 97d4fc7d | 2021-09-23 16:59:09 -0400 | [diff] [blame] | 67 | } |
| 68 | |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 69 | android_library { |
| 70 | name: "SystemUI-core", |
| 71 | srcs: [ |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 72 | "src/**/*.kt", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 73 | "src/**/*.java", |
| 74 | "src/**/I*.aidl", |
Dave Mankoff | 72a5002 | 2021-11-02 20:44:54 -0400 | [diff] [blame] | 75 | ":ReleaseJavaFiles", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 76 | ], |
Jay Aliomer | 97d4fc7d | 2021-09-23 16:59:09 -0400 | [diff] [blame] | 77 | product_variables: { |
| 78 | debuggable: { |
| 79 | srcs: [":DebugJavaFiles"], |
| 80 | exclude_srcs: [":ReleaseJavaFiles"], |
| 81 | }, |
| 82 | }, |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 83 | resource_dirs: [ |
Sunny Goyal | b4a2601 | 2019-12-05 15:49:41 -0800 | [diff] [blame] | 84 | "res-product", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 85 | "res-keyguard", |
| 86 | "res", |
| 87 | ], |
| 88 | static_libs: [ |
Quang Luong | c6fc5b2 | 2021-06-10 14:35:32 -0700 | [diff] [blame] | 89 | "WifiTrackerLib", |
Winson Chung | 10a9b4b | 2019-12-18 10:01:36 -0800 | [diff] [blame] | 90 | "WindowManager-Shell", |
Jordan Demeulenaere | cea62bb | 2021-04-08 11:04:50 +0200 | [diff] [blame] | 91 | "SystemUIAnimationLib", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 92 | "SystemUIPluginLib", |
| 93 | "SystemUISharedLib", |
Jerry Chang | 919d1d2 | 2020-07-16 12:31:24 +0800 | [diff] [blame] | 94 | "SystemUI-statsd", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 95 | "SettingsLib", |
Fabian Kozynski | 713b727 | 2020-03-03 18:35:52 -0500 | [diff] [blame] | 96 | "androidx.viewpager2_viewpager2", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 97 | "androidx.legacy_legacy-support-v4", |
| 98 | "androidx.recyclerview_recyclerview", |
| 99 | "androidx.preference_preference", |
| 100 | "androidx.appcompat_appcompat", |
Mark Renouf | e239501 | 2020-12-16 01:05:12 -0500 | [diff] [blame] | 101 | "androidx.concurrent_concurrent-futures", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 102 | "androidx.mediarouter_mediarouter", |
| 103 | "androidx.palette_palette", |
| 104 | "androidx.legacy_legacy-preference-v14", |
| 105 | "androidx.leanback_leanback", |
| 106 | "androidx.slice_slice-core", |
| 107 | "androidx.slice_slice-view", |
| 108 | "androidx.slice_slice-builders", |
| 109 | "androidx.arch.core_core-runtime", |
Bryce Lee | 436e42c | 2022-01-24 14:53:49 -0800 | [diff] [blame] | 110 | "androidx.lifecycle_lifecycle-common-java8", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 111 | "androidx.lifecycle_lifecycle-extensions", |
Joshua Tsuji | b1a796b | 2019-01-16 15:43:12 -0800 | [diff] [blame] | 112 | "androidx.dynamicanimation_dynamicanimation", |
Steve Elliott | 300b48f | 2019-05-29 14:13:50 -0400 | [diff] [blame] | 113 | "androidx-constraintlayout_constraintlayout", |
Miranda Kephart | e1a22b9 | 2020-12-16 14:01:12 -0500 | [diff] [blame] | 114 | "androidx.exifinterface_exifinterface", |
Lucas Dupin | 00c1a60 | 2022-02-16 16:40:36 -0800 | [diff] [blame^] | 115 | "com.google.android.material_material", |
Steve Elliott | a7d7205 | 2020-12-16 23:04:19 -0500 | [diff] [blame] | 116 | "kotlinx_coroutines_android", |
| 117 | "kotlinx_coroutines", |
Hyunyoung Song | 5347a54 | 2019-03-01 13:32:28 -0800 | [diff] [blame] | 118 | "iconloader_base", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 119 | "SystemUI-tags", |
| 120 | "SystemUI-proto", |
Lucas Dupin | e37369f | 2021-08-31 00:19:39 +0000 | [diff] [blame] | 121 | "monet", |
Dave Mankoff | dffcc47 | 2020-07-08 15:25:16 -0400 | [diff] [blame] | 122 | "dagger2", |
Andy Wickham | 64e3410 | 2021-03-07 16:02:01 -0800 | [diff] [blame] | 123 | "jsr330", |
Beverly | 46817e1 | 2021-06-22 16:29:52 -0400 | [diff] [blame] | 124 | "lottie", |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 125 | ], |
| 126 | manifest: "AndroidManifest.xml", |
| 127 | |
Selim Cinek | 820ba2d | 2019-06-18 18:59:09 -0700 | [diff] [blame] | 128 | kotlincflags: ["-Xjvm-default=enable"], |
Jason Monk | 73e8ffc | 2018-12-06 14:45:19 -0500 | [diff] [blame] | 129 | |
Dave Mankoff | dffcc47 | 2020-07-08 15:25:16 -0400 | [diff] [blame] | 130 | plugins: ["dagger2-compiler"], |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 131 | } |
| 132 | |
Tadashi G. Takaoka | a6572dc | 2019-09-17 15:18:53 +0900 | [diff] [blame] | 133 | filegroup { |
Fabian Kozynski | d389df5 | 2022-01-06 10:52:51 -0500 | [diff] [blame] | 134 | name: "AAA-src", |
| 135 | srcs: ["tests/src/com/android/AAAPlusPlusVerifySysuiRequiredTestPropertiesTest.java"], |
| 136 | path: "tests/src", |
| 137 | } |
| 138 | |
| 139 | filegroup { |
Tadashi G. Takaoka | a6572dc | 2019-09-17 15:18:53 +0900 | [diff] [blame] | 140 | name: "SystemUI-tests-utils", |
| 141 | srcs: [ |
Fabian Kozynski | d389df5 | 2022-01-06 10:52:51 -0500 | [diff] [blame] | 142 | "tests/src/com/android/systemui/SysuiBaseFragmentTest.java", |
Dave Mankoff | b4935a2 | 2021-06-01 15:12:15 -0400 | [diff] [blame] | 143 | "tests/src/com/android/systemui/SysuiTestCase.java", |
| 144 | "tests/src/com/android/systemui/TestableDependency.java", |
| 145 | "tests/src/com/android/systemui/classifier/FalsingManagerFake.java", |
Beverly | 79c89ec | 2019-12-13 10:33:01 -0500 | [diff] [blame] | 146 | "tests/src/com/android/systemui/statusbar/notification/collection/NotificationEntryBuilder.java", |
Tadashi G. Takaoka | a6572dc | 2019-09-17 15:18:53 +0900 | [diff] [blame] | 147 | "tests/src/com/android/systemui/statusbar/RankingBuilder.java", |
| 148 | "tests/src/com/android/systemui/statusbar/SbnBuilder.java", |
Dave Mankoff | b4935a2 | 2021-06-01 15:12:15 -0400 | [diff] [blame] | 149 | "tests/src/com/android/systemui/SysuiTestableContext.java", |
Fabian Kozynski | 9ccb234 | 2022-01-05 15:01:19 -0500 | [diff] [blame] | 150 | "tests/src/com/android/systemui/util/**/*Fake.java", |
Dave Mankoff | b4935a2 | 2021-06-01 15:12:15 -0400 | [diff] [blame] | 151 | "tests/src/com/android/systemui/utils/leaks/BaseLeakChecker.java", |
| 152 | "tests/src/com/android/systemui/utils/leaks/LeakCheckedTest.java", |
| 153 | "tests/src/com/android/systemui/**/Fake*.java", |
| 154 | "tests/src/com/android/systemui/**/Fake*.kt", |
| 155 | ], |
| 156 | exclude_srcs: [ |
| 157 | "tests/src/com/android/systemui/**/*Test.java", |
| 158 | "tests/src/com/android/systemui/**/*Test.kt", |
Tadashi G. Takaoka | a6572dc | 2019-09-17 15:18:53 +0900 | [diff] [blame] | 159 | ], |
| 160 | path: "tests/src", |
| 161 | } |
| 162 | |
Bryce Lee | a5b0808 | 2021-10-06 11:34:56 -0700 | [diff] [blame] | 163 | java_library { |
| 164 | name: "SystemUI-tests-concurrency", |
| 165 | srcs: [ |
| 166 | "src/com/android/systemui/util/concurrency/DelayableExecutor.java", |
| 167 | "src/com/android/systemui/util/time/SystemClock.java", |
| 168 | "tests/src/com/android/systemui/util/concurrency/FakeExecutor.java", |
| 169 | "tests/src/com/android/systemui/util/time/FakeSystemClock.java", |
| 170 | ], |
| 171 | jarjar_rules: ":jarjar-rules-shared", |
| 172 | } |
| 173 | |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 174 | android_library { |
| 175 | name: "SystemUI-tests", |
Sunny Goyal | eb18d39 | 2020-02-07 16:48:14 -0800 | [diff] [blame] | 176 | manifest: "tests/AndroidManifest-base.xml", |
| 177 | additional_manifests: ["tests/AndroidManifest.xml"], |
| 178 | |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 179 | resource_dirs: [ |
| 180 | "tests/res", |
Sunny Goyal | b4a2601 | 2019-12-05 15:49:41 -0800 | [diff] [blame] | 181 | "res-product", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 182 | "res-keyguard", |
| 183 | "res", |
| 184 | ], |
| 185 | srcs: [ |
| 186 | "tests/src/**/*.kt", |
| 187 | "tests/src/**/*.java", |
| 188 | "src/**/*.kt", |
| 189 | "src/**/*.java", |
| 190 | "src/**/I*.aidl", |
Dave Mankoff | 1a934e9 | 2021-10-21 10:30:19 -0400 | [diff] [blame] | 191 | ":ReleaseJavaFiles", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 192 | ], |
| 193 | static_libs: [ |
Quang Luong | c6fc5b2 | 2021-06-10 14:35:32 -0700 | [diff] [blame] | 194 | "WifiTrackerLib", |
Jordan Demeulenaere | cea62bb | 2021-04-08 11:04:50 +0200 | [diff] [blame] | 195 | "SystemUIAnimationLib", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 196 | "SystemUIPluginLib", |
| 197 | "SystemUISharedLib", |
Hyunyoung Song | 3d89c93 | 2020-04-11 13:31:06 -0700 | [diff] [blame] | 198 | "SystemUI-statsd", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 199 | "SettingsLib", |
Fabian Kozynski | 713b727 | 2020-03-03 18:35:52 -0500 | [diff] [blame] | 200 | "androidx.viewpager2_viewpager2", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 201 | "androidx.legacy_legacy-support-v4", |
| 202 | "androidx.recyclerview_recyclerview", |
| 203 | "androidx.preference_preference", |
| 204 | "androidx.appcompat_appcompat", |
Mark Renouf | e239501 | 2020-12-16 01:05:12 -0500 | [diff] [blame] | 205 | "androidx.concurrent_concurrent-futures", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 206 | "androidx.mediarouter_mediarouter", |
| 207 | "androidx.palette_palette", |
| 208 | "androidx.legacy_legacy-preference-v14", |
| 209 | "androidx.leanback_leanback", |
| 210 | "androidx.slice_slice-core", |
| 211 | "androidx.slice_slice-view", |
| 212 | "androidx.slice_slice-builders", |
| 213 | "androidx.arch.core_core-runtime", |
Bryce Lee | 436e42c | 2022-01-24 14:53:49 -0800 | [diff] [blame] | 214 | "androidx.lifecycle_lifecycle-common-java8", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 215 | "androidx.lifecycle_lifecycle-extensions", |
Joshua Tsuji | b1a796b | 2019-01-16 15:43:12 -0800 | [diff] [blame] | 216 | "androidx.dynamicanimation_dynamicanimation", |
Steve Elliott | 300b48f | 2019-05-29 14:13:50 -0400 | [diff] [blame] | 217 | "androidx-constraintlayout_constraintlayout", |
Miranda Kephart | e1a22b9 | 2020-12-16 14:01:12 -0500 | [diff] [blame] | 218 | "androidx.exifinterface_exifinterface", |
Pinyao Ting | ee191b1 | 2020-04-29 18:35:39 -0700 | [diff] [blame] | 219 | "kotlinx-coroutines-android", |
| 220 | "kotlinx-coroutines-core", |
Lyn Han | 1b4f25e | 2019-06-11 13:56:34 -0700 | [diff] [blame] | 221 | "iconloader_base", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 222 | "SystemUI-tags", |
| 223 | "SystemUI-proto", |
| 224 | "metrics-helper-lib", |
Tadashi G. Takaoka | c7340fb | 2020-10-20 17:50:13 +0900 | [diff] [blame] | 225 | "hamcrest-library", |
| 226 | "androidx.test.rules", |
| 227 | "androidx.test.uiautomator", |
Beverly | 9028d41 | 2019-12-11 16:33:16 -0500 | [diff] [blame] | 228 | "mockito-target-extended-minus-junit4", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 229 | "testables", |
| 230 | "truth-prebuilt", |
Lucas Dupin | e37369f | 2021-08-31 00:19:39 +0000 | [diff] [blame] | 231 | "monet", |
Dave Mankoff | dffcc47 | 2020-07-08 15:25:16 -0400 | [diff] [blame] | 232 | "dagger2", |
Bill Lin | a17858d1 | 2020-07-14 10:30:10 +0800 | [diff] [blame] | 233 | "jsr330", |
| 234 | "WindowManager-Shell", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 235 | ], |
| 236 | libs: [ |
| 237 | "android.test.runner", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 238 | "android.test.base", |
| 239 | ], |
Selim Cinek | 820ba2d | 2019-06-18 18:59:09 -0700 | [diff] [blame] | 240 | kotlincflags: ["-Xjvm-default=enable"], |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 241 | aaptflags: [ |
| 242 | "--extra-packages", |
Hyunyoung Song | 8f9d34c | 2019-08-30 14:47:43 -0700 | [diff] [blame] | 243 | "com.android.systemui", |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 244 | ], |
Dave Mankoff | dffcc47 | 2020-07-08 15:25:16 -0400 | [diff] [blame] | 245 | plugins: ["dagger2-compiler"], |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 246 | } |
| 247 | |
Jared Duke | 9dfa77b | 2021-12-22 13:31:06 -0800 | [diff] [blame] | 248 | // Opt-in config for optimizing the SystemUI target using R8. |
| 249 | // Enabled via `export SYSTEMUI_OPTIMIZE_JAVA=true`, or explicitly in Make via |
| 250 | // the `SOONG_CONFIG_ANDROID_SYSTEMUI_OPTIMIZE_JAVA` variable. |
| 251 | // TODO(b/203472868): Enable optimizations by default after stabilizing and |
| 252 | // building out retrace infrastructure. |
| 253 | soong_config_module_type { |
| 254 | name: "systemui_optimized_java_defaults", |
| 255 | module_type: "java_defaults", |
| 256 | config_namespace: "ANDROID", |
| 257 | bool_variables: ["SYSTEMUI_OPTIMIZE_JAVA"], |
| 258 | properties: ["optimize"], |
Jared Duke | 2fee740 | 2021-10-18 14:35:04 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Jared Duke | 9dfa77b | 2021-12-22 13:31:06 -0800 | [diff] [blame] | 261 | systemui_optimized_java_defaults { |
Jared Duke | 2fee740 | 2021-10-18 14:35:04 -0700 | [diff] [blame] | 262 | name: "SystemUI_app_defaults", |
| 263 | soong_config_variables: { |
Jared Duke | 9dfa77b | 2021-12-22 13:31:06 -0800 | [diff] [blame] | 264 | SYSTEMUI_OPTIMIZE_JAVA: { |
Jared Duke | 2fee740 | 2021-10-18 14:35:04 -0700 | [diff] [blame] | 265 | optimize: { |
| 266 | enabled: true, |
| 267 | optimize: true, |
| 268 | shrink: true, |
| 269 | proguard_flags_files: ["proguard.flags"], |
| 270 | }, |
| 271 | conditions_default: { |
| 272 | optimize: { |
| 273 | proguard_flags_files: ["proguard.flags"], |
| 274 | }, |
| 275 | }, |
| 276 | }, |
| 277 | }, |
| 278 | } |
| 279 | |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 280 | android_app { |
| 281 | name: "SystemUI", |
Jared Duke | 2fee740 | 2021-10-18 14:35:04 -0700 | [diff] [blame] | 282 | defaults: [ |
| 283 | "platform_app_defaults", |
| 284 | "SystemUI_app_defaults", |
| 285 | ], |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 286 | static_libs: [ |
| 287 | "SystemUI-core", |
| 288 | ], |
Anton Hansson | 7ccca9f | 2019-02-08 09:01:32 +0000 | [diff] [blame] | 289 | resource_dirs: [], |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 290 | |
| 291 | platform_apis: true, |
Jeongik Cha | d45d9e1 | 2019-12-04 13:38:39 +0900 | [diff] [blame] | 292 | system_ext_specific: true, |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 293 | certificate: "platform", |
| 294 | privileged: true, |
| 295 | |
Selim Cinek | 820ba2d | 2019-06-18 18:59:09 -0700 | [diff] [blame] | 296 | kotlincflags: ["-Xjvm-default=enable"], |
| 297 | |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 298 | dxflags: ["--multi-dex"], |
Winson Chung | b754f52 | 2020-08-03 22:17:08 -0700 | [diff] [blame] | 299 | required: [ |
| 300 | "privapp_whitelist_com.android.systemui", |
Winson Chung | b754f52 | 2020-08-03 22:17:08 -0700 | [diff] [blame] | 301 | ], |
Jason Monk | a2f2d82 | 2018-08-13 11:10:48 -0400 | [diff] [blame] | 302 | } |