-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
36 lines (33 loc) · 942 Bytes
/
Android.bp
File metadata and controls
36 lines (33 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package {
default_team: "trendy_team_camera_framework",
default_applicable_licenses: ["Android-Apache-2.0"],
}
aconfig_declarations {
name: "device_as_webcam_flags",
package: "com.android.deviceaswebcam.flags",
container: "system",
srcs: ["device_as_webcam.aconfig"],
}
// Re-enable when adding flags.
// Also add as a dependency to DeviceAsWebcam or libDeviceAsWebcam
// as needed.
//
// java_aconfig_library {
// name: "device_as_webcam_flags_java_lib",
// aconfig_declarations: "device_as_webcam_flags",
// }
genrule {
name: "camera-webcam-test",
srcs: [
"tests/*",
],
exclude_srcs: [
".gitignore",
"Android.bp",
"OWNERS",
],
tools: ["soong_zip"],
out: ["camera-webcam-test.zip"],
cmd: "echo $(locations tests/*) >$(genDir)/list && " +
"$(location soong_zip) -o $(out) -P android-cts-verifier/CameraWebcamTest -l $(genDir)/list",
}