Grab macros from libbase instead of duplicating

Change-Id: I1802f60a4dac45ddee8cd5715a73c77e4371d7e8
Signed-off-by: Casey Dahlin <sadmac@google.com>
This commit is contained in:
Casey Dahlin
2015-09-10 18:43:04 -07:00
parent 96786829c2
commit 2535cae005
3 changed files with 4 additions and 10 deletions

View File

@@ -35,6 +35,9 @@ LOCAL_SRC_FILES := \
options.cpp \
search_path.cpp \
LOCAL_SHARED_LIBRARIES := \
libbase \
include $(BUILD_HOST_STATIC_LIBRARY)

View File

@@ -1,10 +1,9 @@
#ifndef AIDL_AIDL_LANGUAGE_H_
#define AIDL_AIDL_LANGUAGE_H_
#include <base/macros.h>
#include <string>
#include "macros.h"
typedef enum {
NO_EXTRA_TEXT = 0,
SHORT_COMMENT,

View File

@@ -1,8 +0,0 @@
#ifndef AIDL_MACROS_H_
#define AIDL_MACROS_H_
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
TypeName(const TypeName&); \
void operator=(const TypeName&)
#endif // AIDL_MACROS_H_