OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This Android makefile is used to build WebView in the Android build system. | 5 # This Android makefile is used to build WebView in the Android build system. |
6 # gyp autogenerates the real makefiles, which we just include here if we are | 6 # gyp autogenerates most of the real makefiles, which we just include here if |
7 # doing a WebView build. For other builds, this makefile does nothing, which | 7 # we are doing a WebView build. For other builds, this makefile does nothing, |
8 # prevents the Android build system from mistakenly loading any other | 8 # which prevents the Android build system from mistakenly loading any other |
9 # Android.mk that may exist in the Chromium tree. | 9 # Android.mk that may exist in the Chromium tree. |
10 | 10 |
11 ifdef CHROME_ANDROID_BUILD_WEBVIEW | 11 ifdef CHROME_ANDROID_BUILD_WEBVIEW |
12 include $(call my-dir)/GypAndroid.mk | 12 include $(call my-dir)/GypAndroid.mk |
| 13 include $(call my-dir)/android_webview/Android.mk |
13 endif | 14 endif |
OLD | NEW |