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

Side by Side Diff: android_webview/Android.mk

Issue 12939021: Make the build control what library(/ies) to load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@antpy
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 package provides the parts of the WebView java code which live in the 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 6 # Chromium tree. This is built into a static library so it can be used by the
7 # glue layer in the Android tree. 7 # glue layer in the Android tree.
8 8
9 LOCAL_PATH := $(call my-dir) 9 LOCAL_PATH := $(call my-dir)
10 include $(CLEAR_VARS) 10 include $(CLEAR_VARS)
(...skipping 24 matching lines...) Expand all
35 $(call all-java-files-under, ../third_party/eyesfree/src/android/java/src) \ 35 $(call all-java-files-under, ../third_party/eyesfree/src/android/java/src) \
36 $(call all-Iaidl-files-under, ../third_party/eyesfree/src/android/java/src) 36 $(call all-Iaidl-files-under, ../third_party/eyesfree/src/android/java/src)
37 37
38 # browser components 38 # browser components
39 LOCAL_SRC_FILES += \ 39 LOCAL_SRC_FILES += \
40 $(call all-java-files-under, \ 40 $(call all-java-files-under, \
41 ../components/web_contents_delegate_android/android/java/src) \ 41 ../components/web_contents_delegate_android/android/java/src) \
42 $(call all-java-files-under, \ 42 $(call all-java-files-under, \
43 ../components/navigation_interception/android/java/src) \ 43 ../components/navigation_interception/android/java/src) \
44 44
45 # This directory includes .java files that are generated by the normal gyp build , but are checked in
46 # for the Android build.
47 # TODO(torne, cjhopman): Consider removing this.
48 LOCAL_SRC_FILES += \
49 $(call all-java-files-under, java/generated_src)
45 50
46 # Java files generated from .template rules. This list should match list of java dependencies in 51 # Java files generated from .template rules. This list should match list of java dependencies in
47 # android_webview/all_webview.gyp 52 # android_webview/all_webview.gyp
48 LOCAL_GENERATED_SOURCES := \ 53 LOCAL_GENERATED_SOURCES := \
49 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/ PageTransitionTypes.java \ 54 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/ PageTransitionTypes.java \
50 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/common/R esultCodes.java \ 55 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/common/R esultCodes.java \
51 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/CertificateM imeType.java \ 56 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/CertificateM imeType.java \
52 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/CertVerifyRe sultAndroid.java \ 57 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/CertVerifyRe sultAndroid.java \
53 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/NetError.jav a \ 58 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/NetError.jav a \
54 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/PrivateKeyTy pe.java \ 59 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/net/PrivateKeyTy pe.java \
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak 384 LOCAL_MODULE := webviewchromium_webkit_strings_zh-CN.pak
380 LOCAL_MODULE_STEM := zh-CN 385 LOCAL_MODULE_STEM := zh-CN
381 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-CN.pak 386 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-CN.pak
382 include $(LOCAL_PATH)/webview_pak.mk 387 include $(LOCAL_PATH)/webview_pak.mk
383 388
384 include $(CLEAR_VARS) 389 include $(CLEAR_VARS)
385 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak 390 LOCAL_MODULE := webviewchromium_webkit_strings_zh-TW.pak
386 LOCAL_MODULE_STEM := zh-TW 391 LOCAL_MODULE_STEM := zh-TW
387 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-TW.pak 392 LOCAL_BUILT_MODULE_STEM := webkit/webkit_strings_zh-TW.pak
388 include $(LOCAL_PATH)/webview_pak.mk 393 include $(LOCAL_PATH)/webview_pak.mk
OLDNEW
« no previous file with comments | « no previous file | android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698