• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_static {
2    name: "libpdfiumfxedit",
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        "fpdfsdk/fxedit/fxet_ap.cpp",
18        "fpdfsdk/fxedit/fxet_edit.cpp",
19        "fpdfsdk/fxedit/fxet_list.cpp",
20    ],
21
22    include_dirs: [
23        "external/freetype/include",
24        "external/freetype/include/freetype",
25    ],
26}
27