diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-20 11:22:40 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:48:53 +0200 |
commit | 85621ee9b30dd325b85eecb7137a0d3cb1d38c27 (patch) | |
tree | 58ea007f69579a4146409f87a2c7e5990717726b /widget/android/bindings/Makefile.in | |
parent | ee6595e6deca4bb6d9008fb1495c5da7692a2b33 (diff) | |
download | UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.gz UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.lz UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.tar.xz UXP-85621ee9b30dd325b85eecb7137a0d3cb1d38c27.zip |
Issue #1053 - Remove Android Widget Toolkit specific files
Diffstat (limited to 'widget/android/bindings/Makefile.in')
-rw-r--r-- | widget/android/bindings/Makefile.in | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/widget/android/bindings/Makefile.in b/widget/android/bindings/Makefile.in deleted file mode 100644 index ea66e6022..000000000 --- a/widget/android/bindings/Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -# Bug 1099345 - The SDK's lint code (used by the code generator) does not enjoy -# concurrent access to a cache that it generates. -.NOTPARALLEL: - -annotation_processor_jar_files := \ - $(DEPTH)/build/annotationProcessors/annotationProcessors.jar \ - $(ANDROID_TOOLS)/lib/lint.jar \ - $(ANDROID_TOOLS)/lib/lint-checks.jar \ - $(NULL) - -sdk_processor := \ - $(JAVA) \ - -Dcom.android.tools.lint.bindir='$(ANDROID_TOOLS)' \ - -classpath $(subst $(NULL) ,:,$(strip $(annotation_processor_jar_files))) \ - org.mozilla.gecko.annotationProcessors.SDKProcessor - -# For the benefit of readers: the following pattern rule says that, -# for example, MediaCodec.cpp and MediaCodec.h can be produced from -# MediaCodec-classes.txt. This formulation invokes the SDK processor -# at most once. - -%.cpp %.h: $(ANDROID_SDK)/android.jar %-classes.txt $(annotation_processor_jar_files) - $(sdk_processor) $(ANDROID_SDK)/android.jar $(srcdir)/$*-classes.txt $(CURDIR) $* 16 |