• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2005 Google Inc. All Rights Reserved.
2#
3# Android.mk for yuv420sp2rgb
4#
5
6LOCAL_PATH:= $(call my-dir)
7
8ifeq ($(TARGET_ARCH),arm)
9include $(CLEAR_VARS)
10
11LOCAL_SRC_FILES := yuv420sp2rgb.c cmdline.c debug.c
12
13LOCAL_MODULE := yuv420sp2rgb
14
15include $(BUILD_HOST_EXECUTABLE)
16endif
17