Commit Graph

263847 Commits

Author SHA1 Message Date
Florian Quèze
d61bf5206c Bug 862148 - stop supporting installation of Sherlock plugins through Services.search.addEngine, r=adw. 2015-09-23 12:05:36 +02:00
Florian Quèze
8fdad1333d Bug 862148 - drop support for Sherlock plugins in window.sidebar.addSearchEngine, r=adw. 2015-09-23 12:05:36 +02:00
Martyn Haigh
cc4ba34616 Bug 1207201 - Fix tab selection bugs; r=mcomella 2015-09-22 16:48:36 +01:00
Francois Marier
2c8c222d2d Bug 1206688 - Add mozfull-track-digest256 to list of Mozilla SB lists. r=gcp 2015-09-22 23:42:59 -07:00
Nick Alexander
1f1fc2e6f2 Bug 1108782 - Follow-up: clobber. r=me 2015-09-22 22:18:15 -07:00
Nick Alexander
eebe139fd5 Bug 1194365 - Bump Andoid NDK to r10e; manually install Android SDK and NDK on Mac OS X. r=mcomella
This bumps the NDK version to r10e.

Previously, we used brew to install android-sdk and a custom version
of android-ndk.  That makes it hard to control the installed versions.
This installs from downloaded archives, which unifies the Mac OS X
approach with the straight-forward Linux approach.
2015-09-22 13:56:17 -07:00
Nick Alexander
ac20364bd4 Bug 1171232 - Depend on platform-tools-preview; don't check for missing and failing Android packages. r=mcomella
The 'tools' package depends on 'platform-tools-preview' now.  Roll
with it until Google breaks us back again.

The behaviour of the |android| tool has changed; recent versions don't
reveal what packages are installed.  That means we can't skip already
installed packages; and we can't really tell if our installation
attempts succeeded.  But we have faith!
2015-09-22 13:54:17 -07:00
Nick Alexander
5920da929e Bug 1204260 - Post: remove platforms/android-* from |mach bootstrap|. r=glandium 2015-09-22 11:40:06 -07:00
Nick Alexander
cf5087d178 Bug 1204260 - Post: remove platforms/android-* from --with-android-sdk. r=glandium 2015-09-12 15:35:40 -04:00
Nick Alexander
38d3e0bd69 Bug 1204260 - Pin Android package versions to android-22 and build-tools-22.0.1. r=glandium
Right now, --with-android-sdk expects a path to a specific Android SDK
version, like /path/to/platforms/android-22.  That path is exposed as
ANDROID_SDK; the Android SDK root is exposed as ANDROID_SDK_ROOT.

Right now, the provided platform's version number is extracted into
ANDROID_TARGET_SDK.  The extracted ANDROID_TARGET_SDK is checked
against a minimum version number (supplied as a parameter to
MOZ_ANDROID_SDK).

After this patch, --with-android-sdk expects what is now
ANDROID_SDK_ROOT, and then derives ANDROID_SDK from that path and a
pinned SDK platform version number.  The exact version number which we
search for is now a parameter given to MOZ_ANDROID_SDK.  We accept and
fail, with a helpful message, if we recognize an old-style ANDROID_SDK
path.

The existing MOZ_ANDROID_{MIN,MAX}_SDK_VERSION variables remain as
they are.

Right now, the Android build tools are searched in a deterministic but
non-obvious manner.  After this patch, the exact build tools version
number is now a parameter given to MOZ_ANDROID_SDK.
2015-09-12 15:04:19 -04:00
Nick Alexander
2d40e159e4 Bug 1204260 - Pre: Don't expose ANDROID_{BUILD,PLATFORM}_TOOLS. r=glandium,gbrown
This stops exposing ANDROID_BUILD_TOOLS and ANDROID_PLATFORM_TOOLS via
AC_SUBST.  We expose most tools already, and this adds EMULATOR, and
consumes it (and ADB) where appropriate.
2015-09-12 14:59:31 -04:00
Nick Alexander
626486d95c Bug 1204260 - Pre: Move AAR searches later. r=me
This merely groups the AAR searches in the configure output, which
reads a little easier.
2015-09-11 19:13:45 -07:00
Nick Alexander
e51e8da2d9 Bug 1108782 - Part 3: Update releng tooltool manifests to use android-sdk-linux with extras/*/m2repository directories. r=glandium
The new tar.xz file was produced by taking the existing file, removing
extras/*/support, and copying over the extras/*/m2repository from my
local machine.  These directories are all the same across all
installs, to the best of my knowledge.  I used |xz --compress| with no
additional options.
2015-09-03 16:11:51 -07:00
Nick Alexander
b8eab59285 Bug 1108782 - Part 2: Explode AAR files at configure time. r=glandium
This gets us a limited version of AAR support: we can consume static
AAR libraries, where here static does not refer to linking, but to
static assets that are fixed at build-backend time and not modified
(or produced) during the build.  This lets us pin our dependencies
(and move to Google's versioned Maven repository packages, away from
Google's unversioned ad-hoc packages).

By restricting to static AAR libraries, we avoid having to handle
truly complicated dependency trees, as changing parts of generated AAR
files require delicate rebuilding of the APKs (and internal libraries)
that depend on the AAR files.

It is possible that we will generate AARs in the tree at some time.
Right now, we don't do that, even for GeckoView: the AARs produced are
assembled as artifacts at package time and are intended for external
consumption.  We might want this for GeckoView and Fennec at some
time; we should consider using Gradle everywhere at that point.

The patch itself does the simplest possible thing (which has precedent
from Gradle and other build systems): it simply "explodes" the AAR
into the object directory and uses existing mechanisms to refer to the
exploded pieces.

AARs have both required and optional components.  Each component is
defined with an expected and required flag. If a component is expected
and not present, or not expected and is present, an error is raised.
If the component is expected and present, autoconf's ifelse() macro is
used to define the relevant AAR_* component variables.  If the
component is not expected and not present, no action is taken.  A
consuming build backend therefore can guard all AAR_* component
variables with just the top-level AAR variable.

Many AAR files have empty assets/ directories.  This patch doesn't
explode empty assets/ directories, protecting against trivial changes
to AAR files that don't impact the build.

There's a lot not to like in this approach, including:

* We need to manually reference internal AAR libs;
* I haven't separated the pinned version numbers out of configure.in.

However, it's closer to what we want than what we have!
2015-09-22 10:04:26 -07:00
Nick Alexander
19cfacbf3c Bug 1108782 - Part 1: straighten out Java classpaths. r=glandium
This commit is us getting out of our own way.  We were specifying
-classpath twice, once in $(JAVAC) and once in java-build.mk.  Only
the latter of these is active.  This a problem for ANDROID_EXTRA_JARS
-- those JARs should be on the classpath and input to $(DX) -- and
JARs that should be on the classpath but *not* input to $(DX).  This
commit removes the global flags to $(JAVAC) and adds
JAVA_{BOOT}CLASSPATH_JARS.  This required some hijinkery moving
wildcards to moz.build files, but everything seems to work.

As well as clarifying some parts of the build, part 2 uses this work
to modify the classpath.
2015-08-31 13:35:05 -07:00
Mark Hammond
96398a36f2 Bug 1206571 - ensure Sync UI is in correct state before Sync initialized. r=adw 2015-09-23 11:00:40 +10:00
Wes Kocher
7cebad8f4b Merge m-c to fx-team, a=merge 2015-09-22 17:11:23 -07:00
Wes Kocher
2ca91a29c1 Backed out changeset feceb41f1c3c (bug 1185244) for breaking running tests locally CLOSED TREE a=backout 2015-09-22 17:08:37 -07:00
Wes Kocher
173607d458 Merge m-c to fx-team, a=merge 2015-09-22 16:48:10 -07:00
Wes Kocher
1118311442 Merge inbound to central, a=merge CLOSED TREE 2015-09-22 16:42:03 -07:00
Wes Kocher
37b17e7744 Merge fx-team to central, a=merge 2015-09-22 16:39:01 -07:00
Felipe Gomes
d15b98958a Backed out changeset 005290f8c1d5 (bug 1205398) 2015-09-22 18:43:49 -03:00
Drew Willcoxon
9508727ea7 Bug 1187901 - Case insensitively compare search suggestions query strings. r=MattN 2015-09-22 14:29:05 -07:00
Wes Kocher
93cb1fb5c2 Backed out 3 changesets (bug 1192924) for Android bustage CLOSED TREE
Backed out changeset 30d612836685 (bug 1192924)
Backed out changeset a6860f880e01 (bug 1192924)
Backed out changeset 10e1fa2cc23a (bug 1192924)
2015-09-22 11:02:55 -07:00
B2G Bumper Bot
6d202fa30b Bumping manifests a=b2g-bump 2015-09-22 10:58:04 -07:00
B2G Bumper Bot
22cb9b5b19 Bumping gaia.json for 7 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/7ba01d2c6e7e
Author: Zibi Braniecki <zbigniew.braniecki@gmail.com>
Desc: Merge pull request #31921 from zbraniecki/1205894-assign-unnamed-title-to-sms-attachment

Bug 1205894 - Assign a title to an unnamed attachment. r=steveck

========

https://hg.mozilla.org/integration/gaia-central/rev/396f11edf0a3
Author: Zibi Braniecki <gandalf@mozilla.com>
Desc: Bug 1205894 - Assign a title to an unnamed attachment

========

https://hg.mozilla.org/integration/gaia-central/rev/f33c65c25da6
Author: Zibi Braniecki <gandalf@mozilla.com>
Desc: Follow up to bug 1205912 - Update missed value_picker test in pt-BR

========

https://hg.mozilla.org/integration/gaia-central/rev/3057bb7fcb7f
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #31976 from mwargers/1207199

Bug 1207199 - Fix stupid mistake in manifest.ini file

========

https://hg.mozilla.org/integration/gaia-central/rev/b4ff17154c49
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1207199 - Fix stupid mistake in manifest.ini file

========

https://hg.mozilla.org/integration/gaia-central/rev/0071f5bfd7ef
Author: Zibi Braniecki <zbigniew.braniecki@gmail.com>
Desc: Merge pull request #31898 from zbraniecki/1205912-update-datetime-pickers-formattings

Bug 1205912 - Update Date/Time pickers to handle automatic timeformat. r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/5fef7be79fe7
Author: Zibi Braniecki <gandalf@mozilla.com>
Desc: Bug 1205912 - Update Date/Time pickers to handle automatic timeformat
2015-09-22 10:55:18 -07:00
B2G Bumper Bot
ac61302fd6 Bumping manifests a=b2g-bump 2015-09-22 10:33:01 -07:00
B2G Bumper Bot
aec8628752 Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/76795d01c002
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #31924 from mwargers/1206164

Bug 1206164 - Increase the time.sleep value to fix the intermittent failure in test_import_contacts_from_sim.py

========

https://hg.mozilla.org/integration/gaia-central/rev/3501a4bcb177
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1206164 - Increase the time.sleep value to fix the intermittent failure in test_import_contacts_from_sim.py

========

https://hg.mozilla.org/integration/gaia-central/rev/2ac5cfd3a7e4
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #31923 from mwargers/1205763

Bug 1205763 - Fix failure in test_gallery_handle_valid_image_file.py

========

https://hg.mozilla.org/integration/gaia-central/rev/21b6cc57e179
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1205763 - Fix failure in test_gallery_handle_valid_image_file.py

========

https://hg.mozilla.org/integration/gaia-central/rev/9b9255006e2a
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #31913 from mwargers/1206138

Bug 1206138 - Fix failure in test_dialer_add_contact.py

========

https://hg.mozilla.org/integration/gaia-central/rev/067789199781
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1206138 - Fix failure in test_dialer_add_contact.py
2015-09-22 10:30:15 -07:00
Boris Zbarsky
535a74aebe Bug 1176313. Reland the changes to make Attr handling follow the spec again. This is a relanding of bug 1075702, effectively. r=smaug 2015-09-22 13:13:26 -04:00
Jan de Mooij
9e1bd425ca Bug 1199952 - Mark formal arguments when we have a LazyLink frame. r=nbp 2015-09-22 19:08:21 +02:00
Jacek Caban
ceee103132 Bug 1207100 - Fixed nsEdgeReadingListExtractor.cpp compilation on GCC. r=Gijs 2015-09-22 19:07:10 +02:00
B2G Bumper Bot
6477e5da05 Bumping manifests a=b2g-bump 2015-09-22 09:53:16 -07:00
B2G Bumper Bot
d1aeaf91e7 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/2bfd2d9cecb2
Author: Douglas Sherk <github@sherk.me>
Desc: Merge pull request #31706 from DouglasSherk/1151627-call-log-today-twice

Bug 1151627 - Move `getDayTime()` from `Utils` to `CallLogDBManager` and fix its timezone handling. r=gsvelto

========

https://hg.mozilla.org/integration/gaia-central/rev/5941e7a3b3c7
Author: Doug Sherk <github@sherk.me>
Desc: Bug 1151627 - Move `getDayTime()` from `Utils` to `CallLogDBManager` and fix its timezone handling. r=gsvelto
2015-09-22 09:50:30 -07:00
Patrick McManus
525dc42b23 bug 366559 - backout due to android build bustage patch 7 on CLOSED TREE r=backout 2015-09-22 12:47:25 -04:00
Michael Layzell
1c1f0ab037 Bug 918742 - Correct handling of author-supplied charsets in XMLHttpRequest, r=bz 2015-09-22 12:26:15 -04:00
Fabrice Desré
cd4e2ae9d3 Bug 1206792 - Crash when launching the camera from the gallery app r=snorp 2015-09-22 08:05:24 -07:00
B2G Bumper Bot
237dc794d1 Bumping manifests a=b2g-bump 2015-09-22 07:13:33 -07:00
B2G Bumper Bot
771b92f10c Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/d564a8d88f02
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #31968 from michielbdejong/1202627-dbPrefix

Bug 1202627 - Use xClientState as Kinto.js dbPrefix, r=ferjm

========

https://hg.mozilla.org/integration/gaia-central/rev/c63dd03e2279
Author: Michiel de Jong <mbdejong@mozilla.com>
Desc: Bug 1202627 - Use xClientState as Kinto.js dbPrefix, r=ferjm
2015-09-22 07:10:17 -07:00
Sebastian Kaspari
355ca755f8 Bug 1197717 - Load fonts from profile-agnostic writable location. r=jfkthame
In addition to the system's font folder and the profile folder we will try to load
fonts from NS_XPCOM_CURRENT_PROCESS_DIR/fonts. This will allow us to later
download fonts at runtime and use them independently from the current profile.
2015-09-22 15:55:56 +02:00
Drew Willcoxon
10821f54b8 Bug 1206376 - Pass the proper bookmark index when creating a new bookmark in the bookmark properties dialog. r=mak 2015-09-22 09:58:56 -07:00
Drew Willcoxon
097f39f6fa Bug 1198415 - Specify a foreground color for toolkit autocomplete panels. r=dao 2015-09-22 09:55:22 -07:00
vivek
4e2170d463 Bug 1178378 - Register for web channel notications and update account profile on callback r=nalexander 2015-09-22 19:06:48 +03:00
Tim Nguyen
6ecdcedb4f Bug 1206911 - Use CSS Filters to gray out whimsycorn rather than using a separate asset. r=dao 2015-09-22 18:03:53 +02:00
Dão Gottwald
53d1be3e79 Bug 1207164 - Use tab separator opacity transition only on hover. r=gijs 2015-09-22 18:03:23 +02:00
Gijs Kruitbosch
15c327ad27 Bug 1205053 - addendum: rebasing mistake due to the new name of the ctypes helper, rs=me 2015-09-22 16:45:06 +01:00
Gijs Kruitbosch
7706868f9a Bug 1199289 - r=valentin,dao 2015-09-22 16:26:15 +01:00
J. Ryan Stinnett
60a00e3e33 Bug 1196155 - Update renamed ESLint rules. r=pbrosset 2015-09-21 17:19:19 -05:00
Allison Naaktgeboren
9eaf4599d4 Bug 1207108 - Duplicated 'bookmarks_title' string in android_strings.dtd.r=nalexander 2015-09-22 13:39:48 -07:00
Allison Naaktgeboren
fc3790608b Bug 1200367 - saved searches should have an opt-out pref in settings.r=liuche 2015-09-22 13:39:48 -07:00
vivek
6a1252efaf Bug 1178378 - Enable profile click action based on native accounts UI r=nalexander 2015-09-22 22:02:40 +03:00