Fix source file typo

I am changing the build system to catch typos such as these -- it will
soon warn when entries in LOCAL_SRC_FILES are unused. (to compile native
binaries)

Change-Id: Ic95e92a5871dbf2d679b32852a4e8afaaf17e55d
This commit is contained in:
Dan Willemsen
2016-01-25 13:55:54 -08:00
parent afc6ebdcba
commit 593f0ffe59

View File

@@ -5,7 +5,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := libbinary_parse
LOCAL_CPP_EXTENSION := .cc
LOCAL_SRC_FILES:= \
src/binary_parse/cached_paged_byte_array.cc, \
src/binary_parse/cached_paged_byte_array.cc \
src/binary_parse/range_checked_byte_ptr.cc
LOCAL_CPPFALGS := -Wsign-compare
include $(BUILD_SHARED_LIBRARY)