forked from OpenPrinting/libppd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
60 lines (58 loc) · 1.58 KB
/
Android.bp
File metadata and controls
60 lines (58 loc) · 1.58 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_library_shared {
name: "libppd",
srcs: [
"ppd/ppd-attr.c",
"ppd/ppd.c",
"ppd/ppd-cache.c",
"ppd/ppd-collection.cxx",
"ppd/ppd-conflicts.c",
"ppd/ppd-custom.c",
"ppd/ppd-emit.c",
"ppd/ppd-filter.c",
"ppd/ppd-generator.c",
"ppd/ppd-load-profile.c",
"ppd/ppd-localize.c",
"ppd/ppd-mark.c",
"ppd/ppd-page.c",
"ppd/ppd-ipp.c",
"ppd/ppd-test.c",
"ppd/array.c",
"ppd/debug.c",
"ppd/encode.c",
"ppd/file.c",
"ppd/imagetops-pstops.c",
"ppd/libcups2.c",
"ppd/pdftops.c",
"ppd/raster-interpret.c",
"ppd/raster-error.c",
"ppd/rastertops.c",
"ppd/string.c",
"ppd/snprintf.c",
"ppd/thread.c",
"ppd/ppdc-array.cxx",
"ppd/ppdc-attr.cxx",
"ppd/ppdc-catalog.cxx",
"ppd/ppdc-choice.cxx",
"ppd/ppdc-constraint.cxx",
"ppd/ppdc-driver.cxx",
"ppd/ppdc-file.cxx",
"ppd/ppdc-filter.cxx",
"ppd/ppdc-font.cxx",
"ppd/ppdc-group.cxx",
"ppd/ppdc-import.cxx",
"ppd/ppdc-mediasize.cxx",
"ppd/ppdc-message.cxx",
"ppd/ppdc-option.cxx",
"ppd/ppdc-profile.cxx",
"ppd/ppdc-shared.cxx",
"ppd/ppdc-source.cxx",
"ppd/ppdc-string.cxx",
"ppd/ppdc-variable.cxx",
],
export_include_dirs: [ "." ],
local_include_dirs: [ "config" ],
shared_libs: [ "libcups", "libcupsfilters", "libz" ],
}