Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
scorpio
system_vold
Commits
2b2a0bec
Commit
2b2a0bec
authored
10 years ago
by
Dan Albert
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "Remove makefile cruft."
parents
52f5425f
b2aaf3af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
47 deletions
+18
-47
Android.mk
Android.mk
+5
-18
tests/Android.mk
tests/Android.mk
+13
-29
No files found.
Android.mk
View file @
2b2a0bec
...
...
@@ -22,13 +22,10 @@ common_src_files := \
common_c_includes
:=
\
system/extras/ext4_utils
\
external/openssl/include
\
external/stlport/stlport
\
bionic
\
external/scrypt/lib/crypto
common_shared_libraries
:=
\
libsysutils
\
libstlport
\
libcutils
\
liblog
\
libdiskconfig
\
...
...
@@ -45,48 +42,38 @@ common_static_libraries := \
include
$(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES
:=
$(LOCAL_PATH)
/Android.mk
LOCAL_MODULE
:=
libvold
LOCAL_SRC_FILES
:=
$(common_src_files)
LOCAL_C_INCLUDES
:=
$(common_c_includes)
LOCAL_SHARED_LIBRARIES
:=
$(common_shared_libraries)
LOCAL_STATIC_LIBRARIES
:=
$(common_static_libraries)
LOCAL_MODULE_TAGS
:=
eng tests
include
external/stlport/libstlport.mk
include
$(BUILD_STATIC_LIBRARY)
include
$(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES
:=
$(LOCAL_PATH)
/Android.mk
LOCAL_MODULE
:=
vold
LOCAL_SRC_FILES
:=
\
main.cpp
\
$(common_src_files)
LOCAL_C_INCLUDES
:=
$(common_c_includes)
LOCAL_CFLAGS
:=
-Werror
=
format
LOCAL_SHARED_LIBRARIES
:=
$(common_shared_libraries)
LOCAL_STATIC_LIBRARIES
:=
$(common_static_libraries)
include
external/stlport/libstlport.mk
include
$(BUILD_EXECUTABLE)
include
$(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES
:=
$(LOCAL_PATH)
/Android.mk
LOCAL_SRC_FILES
:=
vdc.c
LOCAL_MODULE
:=
vdc
LOCAL_C_INCLUDES
:=
LOCAL_CFLAGS
:=
LOCAL_SHARED_LIBRARIES
:=
libcutils
include
$(BUILD_EXECUTABLE)
This diff is collapsed.
Click to expand it.
tests/Android.mk
View file @
2b2a0bec
# Build the unit tests.
LOCAL_PATH
:=
$(
call
my-dir
)
include
$(CLEAR_VARS)
test_src_files
:=
\
VolumeManager_test.cpp
shared_libraries
:=
\
liblog
\
libstlport
\
libcrypto
include
$(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES
:=
$(LOCAL_PATH)
/Android.mk
static_libraries
:=
\
libvold
\
libgtest
\
libgtest_main
LOCAL_C_INCLUDES
:=
\
system/core/fs_mgr/include
\
external/openssl/include
\
c_includes
:=
\
external/openssl/include
\
bionic
\
bionic/libstdc++/include
\
external/gtest/include
\
external/stlport/stlport
LOCAL_SHARED_LIBRARIES
:=
\
liblog
\
libcrypto
\
module_tags
:=
eng tests
LOCAL_STATIC_LIBRARIES
:=
libvold
LOCAL_SRC_FILES
:=
VolumeManager_test.cpp
LOCAL_MODULE
:=
vold_tests
LOCAL_MODULE_TAGS
:=
eng tests
$(foreach
file,$(test_src_files),
\
$(eval
include
$(CLEAR_VARS)) \
$(eval LOCAL_SHARED_LIBRARIES
:
= $(shared_libraries))
\
$(eval LOCAL_STATIC_LIBRARIES := $(static_libraries))
\
$(eval LOCAL_C_INCLUDES := $(c_includes))
\
$(eval LOCAL_SRC_FILES := $(file))
\
$(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%)))
\
$(eval LOCAL_MODULE_TAGS := $(module_tags))
\
$(eval include $(BUILD_EXECUTABLE))
\
)
include
$(BUILD_NATIVE_TEST)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment