From patchwork Mon Oct 8 05:50:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Tapani_P=C3=A4lli?= X-Patchwork-Id: 1563891 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id C811C3FC1A for ; Mon, 8 Oct 2012 05:53:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C102A9EE97 for ; Sun, 7 Oct 2012 22:53:29 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTP id 2185B9E9E6 for ; Sun, 7 Oct 2012 22:51:22 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 07 Oct 2012 22:51:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,551,1344236400"; d="scan'208";a="231102633" Received: from unknown (HELO tpalli-mobl2.Elisa) ([10.255.13.167]) by fmsmga001.fm.intel.com with ESMTP; 07 Oct 2012 22:51:20 -0700 From: =?UTF-8?q?Tapani=20P=C3=A4lli?= To: dri-devel@lists.freedesktop.org Subject: =?UTF-8?q?=5BPATCH=203/3=5D=20Android=2Emk=3A=20use=20LOCAL=5FCOPY=5FHEADERS=20to=20export=20headers=2E?= Date: Mon, 8 Oct 2012 08:50:26 +0300 Message-Id: <1349675426-7572-4-git-send-email-tapani.palli@intel.com> X-Mailer: git-send-email 1.7.11.7 In-Reply-To: <1349675426-7572-1-git-send-email-tapani.palli@intel.com> References: <1349675426-7572-1-git-send-email-tapani.palli@intel.com> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org From: Haitao Huang Export necessary header files used by other components for Android, such as libva intel-driver, gralloc, hwcomposer, etc. Change-Id: I2feabf6941379ef4d756e942f30eba059de641f1 Signed-off-by: Haitao Huang [chad: Fixed inconsistent indentation.] Signed-off-by: Chad Versace Reviewed-by: Oliver McFadden --- Android.mk | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 1029dc6..68db5df 100644 --- a/Android.mk +++ b/Android.mk @@ -1,5 +1,5 @@ # -# Copyright © 2011 Intel Corporation +# Copyright © 2011-2012 Intel Corporation # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), @@ -45,6 +45,16 @@ LOCAL_C_INCLUDES := \ LOCAL_CFLAGS := \ -DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1 +LOCAL_COPY_HEADERS := \ + xf86drm.h \ + include/drm/drm_fourcc.h \ + include/drm/drm.h \ + include/drm/drm_mode.h \ + include/drm/drm_sarea.h \ + include/drm/i915_drm.h \ + intel/intel_bufmgr.h \ + +LOCAL_COPY_HEADERS_TO := libdrm include $(BUILD_SHARED_LIBRARY) include $(LOCAL_PATH)/intel/Android.mk