Alexander Martinz | a0ec4b4 | 2020-09-12 15:58:14 +0200 | [diff] [blame] | 1 | // Camera Common Library |
| 2 | // ============================================================ |
| 3 | |
| 4 | java_library { |
| 5 | name: "com.shift.camera", |
| 6 | installable: false, |
| 7 | libs: [ |
| 8 | "androidx.annotation_annotation", |
| 9 | ], |
| 10 | srcs: [ |
| 11 | "camera/common/src/main/java/**/*.java", |
| 12 | ], |
| 13 | } |
| 14 | |
Alexander Martinz | 7c2e56d | 2020-03-02 19:44:17 +0100 | [diff] [blame] | 15 | // CameraX Extension Library |
| 16 | // ============================================================ |
| 17 | |
| 18 | java_library { |
| 19 | name: "androidx.camera.extensions.impl", |
| 20 | installable: true, |
Alexander Martinz | a0ec4b4 | 2020-09-12 15:58:14 +0200 | [diff] [blame] | 21 | static_libs: [ |
| 22 | "com.shift.camera", |
| 23 | ], |
| 24 | libs: [ |
| 25 | "androidx.annotation_annotation", |
| 26 | ], |
Alexander Martinz | 7c2e56d | 2020-03-02 19:44:17 +0100 | [diff] [blame] | 27 | srcs: [ |
Alexander Martinz | a0ec4b4 | 2020-09-12 15:58:14 +0200 | [diff] [blame] | 28 | "camerax/extensions/src/main/java/**/*.java", |
Alexander Martinz | 7c2e56d | 2020-03-02 19:44:17 +0100 | [diff] [blame] | 29 | ], |
| 30 | } |
| 31 | |
| 32 | // Permissions and Feature Flags |
| 33 | // ============================================================ |
| 34 | |
| 35 | prebuilt_etc { |
| 36 | name: "androidx.camera.extensions.impl.xml", |
| 37 | sub_dir: "permissions", |
Alexander Martinz | a0ec4b4 | 2020-09-12 15:58:14 +0200 | [diff] [blame] | 38 | src: "camerax/androidx.camera.extensions.impl.xml", |
Alexander Martinz | 7c2e56d | 2020-03-02 19:44:17 +0100 | [diff] [blame] | 39 | } |