Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a7e9950 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge changes I9b41e78f,Ia66e5da5

am: e416f707

Change-Id: I6a9043ffe00928c89d462385728ba1d467398e34
parents 5fdcc191 e416f707
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

cc_library_shared {
cc_library_static {
    name: "liblshal",
    shared_libs: [
        "libbase",
@@ -47,13 +47,16 @@ cc_defaults {
    name: "lshal_defaults",
    shared_libs: [
        "libbase",
        "libcutils",
        "libutils",
        "libhidlbase",
        "libhidl-gen-utils",
        "libhidltransport",
        "liblshal",
        "libutils",
        "libhidl-gen-hash",
        "libhidl-gen-utils",
        "libvintf",
    ],
    static_libs: [
        "liblshal",
        "libprocpartition",
    ],
    cflags: ["-Wall", "-Werror"],
+1 −4
Original line number Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 */

#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_COMMAND_H_
#define FRAMEWORK_NATIVE_CMDS_LSHAL_COMMAND_H_
#pragma once

#include "utils.h"

@@ -48,5 +47,3 @@ protected:

}  // namespace lshal
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
+1 −4
Original line number Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 */

#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_
#define FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_
#pragma once

#include <string>

@@ -53,5 +52,3 @@ private:

}  // namespace lshal
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_
+1 −4
Original line number Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 */

#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_
#define FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_
#pragma once

#include <string>

@@ -44,5 +43,3 @@ public:

}  // namespace lshal
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_
+1 −4
Original line number Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 */

#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
#define FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
#pragma once

#include <getopt.h>
#include <stdint.h>
@@ -206,5 +205,3 @@ private:

}  // namespace lshal
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
Loading