pdfiumfdrm.bp revision d097d3e23df289fb6de4f363f6e993d841879247
1cc_library_static {
2    name: "libpdfiumfdrm",
3    defaults: ["pdfium-defaults"],
4
5    cflags: [
6        "-DOPJ_STATIC",
7        "-DV8_DEPRECATION_WARNINGS",
8        "-D_CRT_SECURE_NO_WARNINGS",
9
10        // Mask some warnings. These are benign, but we probably want to fix them
11        // upstream at some point.
12        "-Wno-sign-compare",
13        "-Wno-unused-parameter",
14    ],
15
16    srcs: [
17        "core/fdrm/crypto/fx_crypt.cpp",
18        "core/fdrm/crypto/fx_crypt_aes.cpp",
19        "core/fdrm/crypto/fx_crypt_sha.cpp",
20    ],
21}
22