Loading libs/WindowManager/Shell/Android.bp +0 −45 Original line number Diff line number Diff line Loading @@ -156,51 +156,6 @@ java_library { }, } filegroup { name: "wm_shell-shared-utils", srcs: [ "shared/src/com/android/wm/shell/shared/TransitionUtil.java", ], } filegroup { name: "wm_shell-shared-aidls", srcs: [ "shared/**/*.aidl", ], path: "shared/src", } java_library { name: "WindowManager-Shell-shared", srcs: [ "shared/**/*.java", "shared/**/*.kt", ":wm_shell-shared-aidls", ], static_libs: [ "androidx.core_core-animation", "androidx.dynamicanimation_dynamicanimation", "jsr330", ], kotlincflags: ["-Xjvm-default=all"], } java_library { name: "WindowManager-Shell-shared-desktopMode", srcs: [ "shared/**/desktopmode/*.java", "shared/**/desktopmode/*.kt", ], static_libs: [ "com.android.window.flags.window-aconfig-java", ], } android_library { name: "WindowManager-Shell", srcs: [ Loading libs/WindowManager/Shell/shared/Android.bp 0 → 100644 +78 −0 Original line number Diff line number Diff line // Copyright (C) 2024 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package { // See: http://go/android-license-faq // A large-scale-change added 'default_applicable_licenses' to import // all of the 'license_kinds' from "frameworks_base_license" // to get the below license kinds: // SPDX-license-identifier-Apache-2.0 default_applicable_licenses: ["frameworks_base_license"], default_team: "trendy_team_multitasking_windowing", } filegroup { name: "wm_shell-shared-utils", srcs: [ "src/com/android/wm/shell/shared/TransitionUtil.java", ], } filegroup { name: "wm_shell-shared-aidls", srcs: [ "**/*.aidl", ], path: "src", } // NOTE: This shared lib is built with various apps and should not // contain resources that can be overlaid, as they would need // to be overlaid in each app individually. android_library { name: "WindowManager-Shell-shared", resource_dirs: [ "res", ], srcs: [ "**/*.java", "**/*.kt", ":wm_shell-shared-aidls", ], static_libs: [ "androidx.core_core-animation", "androidx.dynamicanimation_dynamicanimation", "jsr330", ], kotlincflags: ["-Xjvm-default=all"], use_resource_processor: true, } // NOTE: This shared lib is built with various apps and should not // contain resources that can be overlaid, as they would need // to be overlaid in each app individually. java_library { name: "WindowManager-Shell-shared-desktopMode", srcs: [ "**/desktopmode/*.java", "**/desktopmode/*.kt", ], static_libs: [ "com.android.window.flags.window-aconfig-java", ], } libs/WindowManager/Shell/shared/AndroidManifest.xml 0 → 100644 +19 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2024 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.wm.shell.shared"> </manifest> libs/WindowManager/Shell/shared/res/values/config.xml 0 → 100644 +18 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2024 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <resources> </resources> No newline at end of file Loading
libs/WindowManager/Shell/Android.bp +0 −45 Original line number Diff line number Diff line Loading @@ -156,51 +156,6 @@ java_library { }, } filegroup { name: "wm_shell-shared-utils", srcs: [ "shared/src/com/android/wm/shell/shared/TransitionUtil.java", ], } filegroup { name: "wm_shell-shared-aidls", srcs: [ "shared/**/*.aidl", ], path: "shared/src", } java_library { name: "WindowManager-Shell-shared", srcs: [ "shared/**/*.java", "shared/**/*.kt", ":wm_shell-shared-aidls", ], static_libs: [ "androidx.core_core-animation", "androidx.dynamicanimation_dynamicanimation", "jsr330", ], kotlincflags: ["-Xjvm-default=all"], } java_library { name: "WindowManager-Shell-shared-desktopMode", srcs: [ "shared/**/desktopmode/*.java", "shared/**/desktopmode/*.kt", ], static_libs: [ "com.android.window.flags.window-aconfig-java", ], } android_library { name: "WindowManager-Shell", srcs: [ Loading
libs/WindowManager/Shell/shared/Android.bp 0 → 100644 +78 −0 Original line number Diff line number Diff line // Copyright (C) 2024 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package { // See: http://go/android-license-faq // A large-scale-change added 'default_applicable_licenses' to import // all of the 'license_kinds' from "frameworks_base_license" // to get the below license kinds: // SPDX-license-identifier-Apache-2.0 default_applicable_licenses: ["frameworks_base_license"], default_team: "trendy_team_multitasking_windowing", } filegroup { name: "wm_shell-shared-utils", srcs: [ "src/com/android/wm/shell/shared/TransitionUtil.java", ], } filegroup { name: "wm_shell-shared-aidls", srcs: [ "**/*.aidl", ], path: "src", } // NOTE: This shared lib is built with various apps and should not // contain resources that can be overlaid, as they would need // to be overlaid in each app individually. android_library { name: "WindowManager-Shell-shared", resource_dirs: [ "res", ], srcs: [ "**/*.java", "**/*.kt", ":wm_shell-shared-aidls", ], static_libs: [ "androidx.core_core-animation", "androidx.dynamicanimation_dynamicanimation", "jsr330", ], kotlincflags: ["-Xjvm-default=all"], use_resource_processor: true, } // NOTE: This shared lib is built with various apps and should not // contain resources that can be overlaid, as they would need // to be overlaid in each app individually. java_library { name: "WindowManager-Shell-shared-desktopMode", srcs: [ "**/desktopmode/*.java", "**/desktopmode/*.kt", ], static_libs: [ "com.android.window.flags.window-aconfig-java", ], }
libs/WindowManager/Shell/shared/AndroidManifest.xml 0 → 100644 +19 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2024 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.wm.shell.shared"> </manifest>
libs/WindowManager/Shell/shared/res/values/config.xml 0 → 100644 +18 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2024 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <resources> </resources> No newline at end of file