1# Copyright (C) 2009 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16# this file is included repeatedly from Android.mk files in order to clean
17# the module-specific variables from the environment,
18
19NDK_LOCAL_VARS := \
20  LOCAL_MODULE \
21  LOCAL_SRC_FILES \
22  LOCAL_C_INCLUDES \
23  LOCAL_CFLAGS \
24  LOCAL_CXXFLAGS \
25  LOCAL_CPPFLAGS \
26  LOCAL_LDFLAGS \
27  LOCAL_LDLIBS \
28  LOCAL_ARFLAGS \
29  LOCAL_CPP_EXTENSION \
30  LOCAL_STATIC_LIBRARIES \
31  LOCAL_STATIC_WHOLE_LIBRARIES \
32  LOCAL_SHARED_LIBRARIES \
33  LOCAL_MAKEFILE \
34  LOCAL_ALLOW_UNDEFINED_SYMBOLS \
35  LOCAL_ARM_MODE \
36  LOCAL_ARM_NEON \
37  LOCAL_DISABLE_NO_EXECUTE \
38
39$(call clear-src-tags)
40$(call clear-vars, $(NDK_LOCAL_VARS))
41
42