• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_static {
2    name: "libcras",
3
4    srcs: [
5        "common/cras_audio_format.c",
6        "common/cras_config.c",
7        "common/cras_file_wait.c",
8        "common/cras_util.c",
9        "common/edid_utils.c",
10        "libcras/cras_client.c",
11        "libcras/cras_helpers.c",
12    ],
13
14    shared_libs: ["libtinyalsa"],
15
16    export_include_dirs: [
17        "common",
18        "libcras",
19    ],
20
21    cflags: [
22        "-DCRAS_SOCKET_FILE_DIR=\"/var/run/cras\"",
23        "-Wall",
24        "-Werror",
25        "-Wno-error=missing-field-initializers",
26        "-Wno-sign-compare",
27        "-Wno-unused-parameter",
28    ],
29}
30