summaryrefslogtreecommitdiffstats
path: root/widget/android/bindings/moz.build
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-20 11:22:40 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:48:53 +0200
commit85621ee9b30dd325b85eecb7137a0d3cb1d38c27 (patch)
tree58ea007f69579a4146409f87a2c7e5990717726b /widget/android/bindings/moz.build
parentee6595e6deca4bb6d9008fb1495c5da7692a2b33 (diff)
downloadUXP-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/moz.build')
-rw-r--r--widget/android/bindings/moz.build41
1 files changed, 0 insertions, 41 deletions
diff --git a/widget/android/bindings/moz.build b/widget/android/bindings/moz.build
deleted file mode 100644
index 1bd71fa95..000000000
--- a/widget/android/bindings/moz.build
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# 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/.
-
-# List of stems to generate .cpp and .h files for. To add a stem, add it to
-# this list and ensure that $(stem)-classes.txt exists in this directory.
-generated = [
- 'AndroidRect',
- 'Bundle',
- 'KeyEvent',
- 'MediaCodec',
- 'MotionEvent',
- 'SurfaceTexture',
- 'ViewConfiguration'
-]
-
-SOURCES += ['!%s.cpp' % stem for stem in generated]
-
-EXPORTS += ['!%s.h' % stem for stem in generated]
-
-# We'd like to add these to a future GENERATED_EXPORTS list, but for now we mark
-# them as generated here and manually install them in Makefile.in.
-GENERATED_FILES += [stem + '.h' for stem in generated]
-
-# There is an unfortunate race condition when using generated SOURCES and
-# pattern rules (see Makefile.in) that manifests itself as a VPATH resolution
-# conflict: MediaCodec.o looks for MediaCodec.cpp and $(CURDIR)/MediaCodec.cpp,
-# and the pattern rule is matched but doesn't resolve both sources, causing a
-# failure. Adding the SOURCES to GENERATED_FILES causes the sources
-# to be built at export time, which is before MediaCodec.o needs them; and by
-# the time MediaCodec.o is built, the source is in place and the VPATH
-# resolution works as expected.
-GENERATED_FILES += [f[1:] for f in SOURCES]
-
-FINAL_LIBRARY = 'xul'
-
-LOCAL_INCLUDES += [
- '/widget/android',
-]