summaryrefslogtreecommitdiff
path: root/Blueprints
blob: 095a83520c82c7cf48f9a75a15f77e63e6767e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2006 The Android Open Source Project

// Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
//SUBDIR_MAKEFILES = ["<func:'all-named-subdir-makefiles' unset>"]

// ANDROIDMK TRANSLATION ERROR: unsupported assignment to LOCAL_INCLUDES
// LOCAL_INCLUDES+=$(LOCAL_PATH)

cc_library_shared {
    name: "libhardware",

    shared_libs: [
        "libcutils",
        "liblog",
        "libdl",
    ],

    cflags: ["-DQEMU_HARDWARE"],

    srcs: ["hardware.c"],
}

// ANDROIDMK TRANSLATION ERROR: unsupported include
// include $(SUBDIR_MAKEFILES)