Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2401)

Unified Diff: android_webview/Android.mk

Issue 11185025: Android WebView: create a java module. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include the new makefile when we're building webview Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/Android.mk
diff --git a/android_webview/Android.mk b/android_webview/Android.mk
new file mode 100644
index 0000000000000000000000000000000000000000..56e51e8991ac389df5f5bf7fe5e417e2b2b8b67b
--- /dev/null
+++ b/android_webview/Android.mk
@@ -0,0 +1,39 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This package provides the parts of the WebView java code which live in the
+# Chromium tree. This is built into a static library so it can be used by the
+# glue layer in the Android tree.
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := android_webview_java
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-java-files-under, java/src)
+
+# contentview
+LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/../content/public/android/java/src
+LOCAL_SRC_FILES += \
+ $(call all-java-files-under, ../content/public/android/java/src) \
+ ../content/public/android/java/src/org/chromium/content/common/ISandboxedProcessCallback.aidl \
+ ../content/public/android/java/src/org/chromium/content/common/ISandboxedProcessService.aidl \
+ $(call all-java-files-under, ../base/android/java/src) \
+ $(call all-java-files-under, ../media/base/android/java/src) \
+ $(call all-java-files-under, ../net/android/java/src) \
+ $(call all-java-files-under, ../ui/android/java/src) \
+
+# TODO(mkosiba): Remove chromium_chrome dep once required browser
+# components are in (replace it with contentview).
+LOCAL_SRC_FILES += \
+ $(call all-java-files-under, ../chrome/android/java/src) \
+ $(call all-java-files-under, ../chrome/browser/component/web_contents_delegate_android/java/src) \
+ $(call all-java-files-under, ../chrome/browser/component/navigation_interception/java/src) \
joth 2012/10/17 21:43:09 move these two /chrome/browser/component deps out
+
+# This file is generated by net.gyp:net_errors_java
+LOCAL_GENERATED_SOURCES := $(call intermediates-dir-for,GYP,shared)/net/template/NetError.java \
+
+include $(BUILD_STATIC_JAVA_LIBRARY)
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698