micky387 | 5e402d5 | 2025-06-19 17:56:47 -0400 | [diff] [blame] | 1 | cc_binary { |
| 2 | name: "vncpasswd", |
| 3 | |
| 4 | srcs: ["vncpasswd.cxx"], |
| 5 | |
| 6 | cflags: [ |
| 7 | "-Ofast", |
| 8 | "-Wall", |
| 9 | "-Wformat=2", |
| 10 | "-DNDEBUG", |
| 11 | "-UNDEBUG", |
| 12 | ] + ["-Wno-unused-parameter"], |
| 13 | |
| 14 | cppflags: [ |
| 15 | "-std=c++11", |
| 16 | "-fexceptions", |
| 17 | "-frtti", |
| 18 | ], |
| 19 | |
| 20 | shared_libs: [ |
| 21 | "libbinder", |
| 22 | "libcrypto", |
| 23 | "libcutils", |
| 24 | "libgui", |
| 25 | "libjpeg", |
| 26 | "libssl", |
| 27 | "libui", |
| 28 | "libutils", |
| 29 | "libz", |
| 30 | ], |
| 31 | |
| 32 | static_libs: ["libtigervnc"], |
| 33 | |
| 34 | include_dirs: ["external/tigervnc/common"], |
| 35 | |
| 36 | system_ext_specific: true, |
| 37 | |
| 38 | } |