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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # This package provides the parts of the WebView java code which live in the
6 # Chromium tree. This is built into a static library so it can be used by the
7 # glue layer in the Android tree.
8
9 LOCAL_PATH := $(call my-dir)
10 include $(CLEAR_VARS)
11
12 LOCAL_MODULE := android_webview_java
13
14 LOCAL_MODULE_TAGS := optional
15
16 LOCAL_SRC_FILES := $(call all-java-files-under, java/src)
17
18 # contentview
19 LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/../content/public/android/java/src
20 LOCAL_SRC_FILES += \
21 $(call all-java-files-under, ../content/public/android/java/src) \
22 ../content/public/android/java/src/org/chromium/content/common/ISandboxedPro cessCallback.aidl \
23 ../content/public/android/java/src/org/chromium/content/common/ISandboxedPro cessService.aidl \
24 $(call all-java-files-under, ../base/android/java/src) \
25 $(call all-java-files-under, ../media/base/android/java/src) \
26 $(call all-java-files-under, ../net/android/java/src) \
27 $(call all-java-files-under, ../ui/android/java/src) \
28
29 # TODO(mkosiba): Remove chromium_chrome dep once required browser
30 # components are in (replace it with contentview).
31 LOCAL_SRC_FILES += \
32 $(call all-java-files-under, ../chrome/android/java/src) \
33 $(call all-java-files-under, ../chrome/browser/component/web_contents_delega te_android/java/src) \
34 $(call all-java-files-under, ../chrome/browser/component/navigation_intercep tion/java/src) \
joth 2012/10/17 21:43:09 move these two /chrome/browser/component deps out
35
36 # This file is generated by net.gyp:net_errors_java
37 LOCAL_GENERATED_SOURCES := $(call intermediates-dir-for,GYP,shared)/net/template /NetError.java \
38
39 include $(BUILD_STATIC_JAVA_LIBRARY)
OLDNEW
« 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