[go: nahoru, domu]

blob: bf2e99916c38166ffb1d0be857dc1366d31a5431 [file] [log] [blame]
steveblock@chromium.orgc1101582012-06-25 17:07:181# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
torne@chromium.org896b8a232012-10-12 13:01:445# This Android makefile is used to build WebView in the Android build system.
torne@chromium.org979f7a8e2012-10-17 14:27:516# gyp autogenerates most of the real makefiles, which we just include here if
7# we are doing a WebView build. For other builds, this makefile does nothing,
8# which prevents the Android build system from mistakenly loading any other
torne@chromium.org896b8a232012-10-12 13:01:449# Android.mk that may exist in the Chromium tree.
10
torne@chromium.org53cdffa2012-10-26 08:27:2411CHROMIUM_DIR := $(call my-dir)
12
13# Assume that if the gyp autogenerated makefile exists, we are doing the
14# WebView build using the Android build system.
torne@chromium.orge906dbe2012-11-21 12:34:1715ifneq (,$(wildcard $(CHROMIUM_DIR)/GypAndroid.$(HOST_OS)-$(TARGET_ARCH).mk))
16include $(CHROMIUM_DIR)/GypAndroid.$(HOST_OS)-$(TARGET_ARCH).mk
torne@chromium.org53cdffa2012-10-26 08:27:2417include $(CHROMIUM_DIR)/android_webview/Android.mk
torne@chromium.org896b8a232012-10-12 13:01:4418endif