1ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#
2ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# Copyright (C) 2014 The Android Open-Source Project
3ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#
4ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# Licensed under the Apache License, Version 2.0 (the "License");
5ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# you may not use this file except in compliance with the License.
6ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# You may obtain a copy of the License at
7ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#
8ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#      http://www.apache.org/licenses/LICENSE-2.0
9ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#
10ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# Unless required by applicable law or agreed to in writing, software
11ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# distributed under the License is distributed on an "AS IS" BASIS,
12ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# See the License for the specific language governing permissions and
14ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# limitations under the License.
15ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen#
16ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen
17ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# WARNING: Everything listed here will be built on ALL platforms,
18ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# including x86, the emulator, and the SDK.  Modules must be uniquely
19ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# named (liblights.tungsten), and must build everywhere, or limit themselves
20ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# to only building on ARM if they include assembly. Individual makefiles
21ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen# are responsible for having their own logic, for fine-grained control.
22ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen
23ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chenifneq ($(filter fugu,$(TARGET_DEVICE)),)
24ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen
25ae089528c7e3a8107be65657e52276dd068c1039Mike J. ChenLOCAL_PATH := $(call my-dir)
26ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen
27ae089528c7e3a8107be65657e52276dd068c1039Mike J. Cheninclude $(call all-makefiles-under,$(LOCAL_PATH))
28ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chen
29ae089528c7e3a8107be65657e52276dd068c1039Mike J. Chenendif
30