Ted Mielczarek
bfa7b8e5f4
bug 1481612 - Re-vendor psutil 5.4.3 using `mach vendor python`. r=chmanchester,gps
...
psutil was previously vendored manually, so re-vendor it using our new tooling
to make for smaller diffs in follow-up patches. This mostly just winds up
adding some extra files that must have been left out of the manual vendoring,
but it also updates the third_party/python/requirements.{in,txt}.
Differential Revision: https://phabricator.services.mozilla.com/D3434
--HG--
extra : moz-landing-system : lando
2018-10-10 19:47:58 +00:00
Andrew Halberstadt
6bc809da2d
Bug 1494069 - Vendor scandir==1.9.0 to third_party/python, r=davehunt
...
Scandir is a faster implementation of os.listdir since it caches file metadata
as it works. Using listdir and then calling things like os.path.isfile after
the fact will result in multiple system calls. Whereas with scandir, there will
only be a single system call per file.
Scandir is part of the stdlib in Python 3.6+, so the following can be used for
Python 2/3 compatible code:
try
from os import scandir, walk
except ImportError:
from scandir import scandir, walk
Differential Revision: https://phabricator.services.mozilla.com/D7738
--HG--
extra : moz-landing-system : lando
2018-10-10 19:21:07 +00:00
Botond Ballo
ff24cf5780
Bug 1496870 - Add a GDB pretty printer for mozilla::EnumSet. r=tromey
...
Differential Revision: https://phabricator.services.mozilla.com/D7954
--HG--
extra : moz-landing-system : lando
2018-10-10 16:33:56 +00:00
Dave Hunt
046359060c
Bug 1490253 - Replace pipenv with pip-tools for vendoring packages and dependencies; r=ahal
...
Depends on D7869
Differential Revision: https://phabricator.services.mozilla.com/D7870
--HG--
extra : moz-landing-system : lando
2018-10-10 08:58:41 +00:00
Csoregi Natalia
fbee84608f
Backed out changeset f92dcf5319ae (bug 1490253) for bustage on test_mozbuild_reading.py. CLOSED TREE
2018-10-10 00:51:30 +03:00
Dave Hunt
4141a28060
Bug 1490253 - Replace pipenv with pip-tools for vendoring packages and dependencies; r=ahal
...
Depends on D7869
Differential Revision: https://phabricator.services.mozilla.com/D7870
--HG--
extra : moz-landing-system : lando
2018-10-09 21:32:35 +00:00
Dave Hunt
1b8dbe2a78
Bug 1490253 - Vendor pip-tools 3.0.0 and dependencies; r=ahal
...
Differential Revision: https://phabricator.services.mozilla.com/D7869
--HG--
extra : moz-landing-system : lando
2018-10-05 18:46:07 +00:00
Mike Hommey
d6be7f2ef6
Bug 1496296 - Update encoding_rs to 0.8.9 and simd to 0.2.3 r=froydnj
...
Only difference with current versions is the ability to use the crates
with stable rust without setting RUSTC_BOOTSTRAP globally ourselves.
Differential Revision: https://phabricator.services.mozilla.com/D7679
--HG--
extra : moz-landing-system : lando
2018-10-04 13:51:39 +00:00
Emilio Cobos Álvarez
fb252d3a24
No bug - update cssparser. r=me
...
This just makes an struct repr(C) which will help me to remove most of
nsCSSValue.
2018-10-04 13:53:53 +02:00
Henri Sivonen
b8545f2cf8
Bug 1495067 - Make HasRTLChars() consider Hebrew presentation forms as RTL (again) and not consider U+FEFF as RTL (again). r=jfkthame
...
* Update encoding_rs to 0.8.8.
* Change U+FEFD and U+FEFE to RTL in IS_RTL_PRESENTATION_FORM to make the
Rust and C++ code agree on what's RTL.
MozReview-Commit-ID: CuK6fN4pojG
Differential Revision: https://phabricator.services.mozilla.com/D7285
--HG--
extra : moz-landing-system : lando
2018-10-02 14:24:15 +00:00
Markus Stange
c6fc1caf62
Bug 1457481 - Run mach vendor rust. r=froydnj,erahm
...
Most importantly, this picks up "object" and "goblin" for ELF binary parsing.
We only use the ELF code from goblin, so the mach-O parsing code gets
eliminated by the linker. Overall, this increases the Android installer size
by 20KB.
Try pushes for reference:
before: https://treeherder.mozilla.org/#/jobs?repo=try&revision=834b56dc5ab3d63a43a32f740ee8212296ac726d&selectedJob=201600899
after: https://treeherder.mozilla.org/#/jobs?repo=try&revision=6983b27e8d3cb715d3b7e6cbd276683f6466e3cc&selectedJob=201600475
installer size: 34524820 -> 34542861 (34.52MB -> 34.54MB)
$ mach vendor rust
Updating registry `https://github.com/rust-lang/crates.io-index `
Adding goblin v0.0.17
Adding memmap v0.6.2
Adding miniz-sys v0.1.10
Adding object v0.10.0
Adding parity-wasm v0.31.3
Adding plain v0.2.3
Adding profiler_helper v0.1.0 (file:///Users/mstange/code/mozilla/tools/profiler/rust-helper)
Adding scroll v0.9.1
Adding scroll_derive v0.9.5
Adding syn v0.15.5
Adding thin-vec v0.1.0
Adding uuid v0.6.5
0:30.11 The following files exceed the filesize limit of 102400:
third_party/rust/miniz-sys/miniz.c
third_party/rust/syn-0.14.6/src/expr.rs
third_party/rust/syn-0.14.6/src/gen/fold.rs
third_party/rust/syn-0.14.6/src/gen/visit.rs
third_party/rust/syn-0.14.6/src/gen/visit_mut.rs
The syn dependency is not compiled for goblin, as far as I can tell - it's only
needed for the 'syn' feature of scroll_derive, and scroll does not ask for
scroll_derive/syn.
object -> goblin -> scroll -> scroll_derive -/-> syn
But it looks like other versions of syn were already in the tree.
Depends on D7021
Differential Revision: https://phabricator.services.mozilla.com/D7023
--HG--
rename : third_party/rust/syn/src/parsers.rs => third_party/rust/syn-0.14.6/src/parsers.rs
rename : third_party/rust/syn/src/verbatim.rs => third_party/rust/syn-0.14.6/src/verbatim.rs
rename : third_party/rust/uuid/.travis.yml => third_party/rust/uuid-0.5.1/.travis.yml
rename : third_party/rust/uuid/src/rustc_serialize.rs => third_party/rust/uuid-0.5.1/src/rustc_serialize.rs
rename : third_party/rust/uuid/src/serde.rs => third_party/rust/uuid-0.5.1/src/serde.rs
extra : moz-landing-system : lando
2018-10-02 01:50:56 +00:00
shindli
2cc7085b7a
Backed out 4 changesets (bug 1457481) for c1 failures in devtools/client/performance-new/test/chrome/test_perf-settings-entries.html
...
Backed out changeset 212450f77860 (bug 1457481)
Backed out changeset ac3deff9340f (bug 1457481)
Backed out changeset 4478820fbcaa (bug 1457481)
Backed out changeset 1c8460b1d6da (bug 1457481)
--HG--
rename : third_party/rust/syn-0.14.6/src/parsers.rs => third_party/rust/syn/src/parsers.rs
rename : third_party/rust/syn-0.14.6/src/verbatim.rs => third_party/rust/syn/src/verbatim.rs
rename : third_party/rust/uuid-0.5.1/.travis.yml => third_party/rust/uuid/.travis.yml
rename : third_party/rust/uuid-0.5.1/src/rustc_serialize.rs => third_party/rust/uuid/src/rustc_serialize.rs
rename : third_party/rust/uuid-0.5.1/src/serde.rs => third_party/rust/uuid/src/serde.rs
2018-10-02 01:43:46 +03:00
Markus Stange
56e10a560b
Bug 1457481 - Run mach vendor rust. r=froydnj,erahm
...
Most importantly, this picks up "object" and "goblin" for ELF binary parsing.
We only use the ELF code from goblin, so the mach-O parsing code gets
eliminated by the linker. Overall, this increases the Android installer size
by 20KB.
Try pushes for reference:
before: https://treeherder.mozilla.org/#/jobs?repo=try&revision=834b56dc5ab3d63a43a32f740ee8212296ac726d&selectedJob=201600899
after: https://treeherder.mozilla.org/#/jobs?repo=try&revision=6983b27e8d3cb715d3b7e6cbd276683f6466e3cc&selectedJob=201600475
installer size: 34524820 -> 34542861 (34.52MB -> 34.54MB)
$ mach vendor rust
Updating registry `https://github.com/rust-lang/crates.io-index `
Adding goblin v0.0.17
Adding memmap v0.6.2
Adding miniz-sys v0.1.10
Adding object v0.10.0
Adding parity-wasm v0.31.3
Adding plain v0.2.3
Adding profiler_helper v0.1.0 (file:///Users/mstange/code/mozilla/tools/profiler/rust-helper)
Adding scroll v0.9.1
Adding scroll_derive v0.9.5
Adding syn v0.15.5
Adding thin-vec v0.1.0
Adding uuid v0.6.5
0:30.11 The following files exceed the filesize limit of 102400:
third_party/rust/miniz-sys/miniz.c
third_party/rust/syn-0.14.6/src/expr.rs
third_party/rust/syn-0.14.6/src/gen/fold.rs
third_party/rust/syn-0.14.6/src/gen/visit.rs
third_party/rust/syn-0.14.6/src/gen/visit_mut.rs
The syn dependency is not compiled for goblin, as far as I can tell - it's only
needed for the 'syn' feature of scroll_derive, and scroll does not ask for
scroll_derive/syn.
object -> goblin -> scroll -> scroll_derive -/-> syn
But it looks like other versions of syn were already in the tree.
Depends on D7021
Differential Revision: https://phabricator.services.mozilla.com/D7023
--HG--
rename : third_party/rust/syn/src/parsers.rs => third_party/rust/syn-0.14.6/src/parsers.rs
rename : third_party/rust/syn/src/verbatim.rs => third_party/rust/syn-0.14.6/src/verbatim.rs
rename : third_party/rust/uuid/.travis.yml => third_party/rust/uuid-0.5.1/.travis.yml
rename : third_party/rust/uuid/src/rustc_serialize.rs => third_party/rust/uuid-0.5.1/src/rustc_serialize.rs
rename : third_party/rust/uuid/src/serde.rs => third_party/rust/uuid-0.5.1/src/serde.rs
extra : moz-landing-system : lando
2018-10-01 20:24:42 +00:00
Henri Sivonen
b779d7751c
Bug 1494651 - Update encoding_rs to 0.8.7. r=m_kato
...
MozReview-Commit-ID: EB0wO4BxFAb
Differential Revision: https://phabricator.services.mozilla.com/D7087
--HG--
extra : moz-landing-system : lando
2018-10-01 01:11:59 +00:00
Benjamin Bouvier
8dd620efc8
Bug 1469027: Vendor in Rust dependencies for Cranelift; r=froydnj
...
--HG--
extra : rebase_source : 045272c50dd65c487200c520fbbe6c38fc9f9820
2018-09-12 16:04:35 +02:00
Robert Helmer
31db631e3c
Bug 1494138 - update vendored libprio to 1.2 r=glandium
...
Differential Revision: https://phabricator.services.mozilla.com/D6871
--HG--
extra : moz-landing-system : lando
2018-09-27 06:10:05 +00:00
Jeff Muizelaar
f405bac266
Bug 1494042. Update Cargo lockfile and re-vendor rust dependencies
2018-09-26 00:37:48 -04:00
Jeff Muizelaar
c519453957
Bug 1493496. Update Cargo lockfiles re-vendor rust dependencies
2018-09-24 23:17:50 -04:00
Matt Brubeck
9a8bd3b5d7
Bug 1493435 - Upgrade to uluru 0.3. r=nox,emilio
...
This cherry-picks servo/servo#21789 .
2018-09-23 13:52:36 +02:00
Andre Bogus
52ad6442dc
Bug 1493435 - Update smallvec crate and enable the union feature. r=emilio
...
We had a mix of 0.6.2 and 0.6.5 (which is the current release),
this unifies to the latest version. It also enables the union
feature which removes the discriminant, reducing memory usage.
This cherry-picks servo/servo#21746 .
2018-09-23 13:47:13 +02:00
Jeff Muizelaar
0ab721dac5
Bug 1493268. Update Cargo lockfiles and re-vendor rust dependencies
2018-09-22 21:21:17 -04:00
Jeff Muizelaar
24d813756e
Bug 1493097. Update Cargo lockfiles and re-vendor rust dependencies
...
--HG--
extra : rebase_source : 91dcd4aae7262a775c6fc1bc5657fc703dd2cb5b
2018-09-21 15:40:16 -04:00
Jeff Muizelaar
e816372be4
Bug 1492880. Update Cargo lockfiles and re-vendor rust dependencies
2018-09-20 23:29:49 -04:00
Thomas Daede
3e8224c602
Bug 1368843: Enable libaom on Android. r=jya
...
Differential Revision: https://phabricator.services.mozilla.com/D6336
--HG--
extra : moz-landing-system : lando
2018-09-20 08:25:35 +00:00
Thomas Daede
a6f10c9181
Bug 1489285: Update libaom. r=dminor
...
Differential Revision: https://phabricator.services.mozilla.com/D6206
--HG--
rename : third_party/aom/aom_ports/ppc.h => third_party/aom/aom_dsp/x86/sum_squares_sse2.h
rename : third_party/aom/av1/decoder/obu.h => third_party/aom/av1/common/obu_util.h
rename : third_party/aom/build/make/ios-Info.plist => third_party/aom/build/cmake/ios-Info.plist
rename : third_party/aom/build/make/iosbuild.sh => third_party/aom/build/cmake/iosbuild.sh
rename : third_party/aom/build/make/rtcd.pl => third_party/aom/build/cmake/rtcd.pl
rename : third_party/aom/common/y4menc.h => third_party/aom/common/rawenc.h
extra : moz-landing-system : lando
2018-09-19 21:27:06 +00:00
Matt Brubeck
089f3a6e6b
Bug 1492001 - Revendor Rust dependencies. r=jgraham
...
Depends on D6168
Differential Revision: https://phabricator.services.mozilla.com/D6169
--HG--
rename : third_party/rust/num/bors.toml => third_party/rust/num-integer/bors.toml
extra : moz-landing-system : lando
2018-09-18 17:51:22 +00:00
Noemi Erli
724848c2db
Backed out 2 changesets (bug 1492001) for Btup build bustages
...
Backed out changeset 6ec9bc89a5b3 (bug 1492001)
Backed out changeset 238fdce77ee9 (bug 1492001)
--HG--
rename : third_party/rust/num-integer/bors.toml => third_party/rust/num/bors.toml
2018-09-18 20:38:24 +03:00
Matt Brubeck
03519bf6d8
Bug 1492001 - Revendor Rust dependencies. r=jgraham
...
Depends on D6168
Differential Revision: https://phabricator.services.mozilla.com/D6169
--HG--
rename : third_party/rust/num/bors.toml => third_party/rust/num-integer/bors.toml
extra : moz-landing-system : lando
2018-09-18 16:35:08 +00:00
Robert Helmer
88ee2451ac
Bug 1491289 - re-vendor libprio to pick up fixes for using system NSS r=glandium
...
Differential Revision: https://phabricator.services.mozilla.com/D6082
--HG--
extra : moz-landing-system : lando
2018-09-18 04:36:49 +00:00
Emilio Cobos Álvarez
77f2e53394
Bug 1491577 - Revendor rust dependencies. r=me
2018-09-15 19:25:49 +02:00
Andreas Tolfsen
21c881ebf9
bug 1490674: vendor rust dependencies; r=me
2018-09-14 12:28:02 +01:00
Tooru Fujisawa
37c4b7c0dc
Bug 1472103 - Part 1.1: Result of mach vendor rust. r=me
2018-09-14 01:56:07 +09:00
Bogdan Tara
3fc5bc9ad5
Merge mozilla-central to autoland. a=merge CLOSED TREE
2018-09-12 01:15:44 +03:00
Dustin J. Mitchell
55bc80584c
Bug 1490128: upgrade json-e==2.7.0 r=davehunt
...
This was done with |mach vendor python| followed by a manual backout of changes
to unrelated packages.
Differential Revision: https://phabricator.services.mozilla.com/D5532
--HG--
extra : moz-landing-system : lando
2018-09-11 21:14:52 +00:00
Bastien Orivel
9ffad5d4b8
Bug 1489792 - Part 2: Revendor dependencies. r=ato
2018-09-11 10:18:41 +01:00
Jeff Muizelaar
0f8d66ac1c
Bug 1488887. Update Cargo lockfiles and revendor dependencies.
...
* * *
Re-vendor rust dependencies
2018-09-05 21:21:57 -04:00
Emilio Cobos Álvarez
09b97d9474
Bug 1488172 - Revendor rust dependencies. r=me
2018-09-03 14:13:36 +02:00
Myk Melez
19d8327672
Bug 1482810 - update cc crate from 1.0.18 to 1.0.23 r=froydnj
...
The fix for bug 1482810 requires an upstream change to the cc crate: if CFLAGS is defined, then don't enable warnings by default. That change was included in cc crate version 1.0.23, and this change vendors that version of the cc crate into mozilla-central.
MozReview-Commit-ID: Krfrs1dSN9d
Differential Revision: https://phabricator.services.mozilla.com/D4699
--HG--
extra : moz-landing-system : lando
2018-08-30 17:24:55 +00:00
Bastien Orivel
3946c67f0c
Bug 1486815 - Remove nom 1 from dependencies. r=emilio
2018-08-30 00:09:51 +02:00
Nathan Froyd
65e7b0bbd1
Bug 1485409 - update crates to dispense with winapi 0.2.8 requirement; r=glandium
...
winapi 0.2.8 is used by a number of crates in our dependency graph. The
newest version of winapi is 0.3.4, which is a significant restructuring
and also more amenable to further development, e.g. adding AArch64
support. This patch does the easy work of updating as many things as
possible to winapi 0.3.4 via a simple `cargo update`:
cargo update -p atty:0.2.2 -p fs2 -p msdos_time -p parking_lot_core -p aho-corasick
and then vendoring the results of those changes.
2018-08-28 21:37:30 -04:00
Cosmin Sabou
469b620e12
Merge mozilla-central to autoland. a=merge
...
--HG--
rename : testing/web-platform/tests/css/compositing/support/parsing-testcommon.js => testing/web-platform/tests/css/compositing/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-backgrounds/support/parsing-testcommon.js => testing/web-platform/tests/css/css-backgrounds/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-box/support/parsing-testcommon.js => testing/web-platform/tests/css/css-box/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-cascade/support/parsing-testcommon.js => testing/web-platform/tests/css/css-cascade/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-color/support/parsing-testcommon.js => testing/web-platform/tests/css/css-color/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-images/support/parsing-testcommon.js => testing/web-platform/tests/css/css-images/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-masking/support/parsing-testcommon.js => testing/web-platform/tests/css/css-masking/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-shapes/support/parsing-testcommon.js => testing/web-platform/tests/css/css-shapes/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-transforms/support/parsing-testcommon.js => testing/web-platform/tests/css/css-transforms/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-ui/support/parsing-testcommon.js => testing/web-platform/tests/css/css-ui/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/css-writing-modes/support/parsing-testcommon.js => testing/web-platform/tests/css/css-writing-modes/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/filter-effects/support/parsing-testcommon.js => testing/web-platform/tests/css/filter-effects/parsing/support/parsing-testcommon.js
rename : testing/web-platform/tests/css/motion/support/parsing-testcommon.js => testing/web-platform/tests/css/motion/parsing/support/parsing-testcommon.js
rename : third_party/rust/crossbeam-deque/.cargo-checksum.json => third_party/rust/crossbeam-deque-0.2.0/.cargo-checksum.json
rename : third_party/rust/crossbeam-deque/.travis.yml => third_party/rust/crossbeam-deque-0.2.0/.travis.yml
rename : third_party/rust/crossbeam-deque/CHANGELOG.md => third_party/rust/crossbeam-deque-0.2.0/CHANGELOG.md
rename : third_party/rust/crossbeam-deque/Cargo.toml => third_party/rust/crossbeam-deque-0.2.0/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/crossbeam-deque-0.2.0/LICENSE-APACHE
rename : third_party/rust/crossbeam-deque/README.md => third_party/rust/crossbeam-deque-0.2.0/README.md
rename : third_party/rust/crossbeam-deque/src/lib.rs => third_party/rust/crossbeam-deque-0.2.0/src/lib.rs
rename : third_party/rust/crossbeam-epoch/.cargo-checksum.json => third_party/rust/crossbeam-epoch-0.3.1/.cargo-checksum.json
rename : third_party/rust/crossbeam-epoch/.travis.yml => third_party/rust/crossbeam-epoch-0.3.1/.travis.yml
rename : third_party/rust/crossbeam-epoch/CHANGELOG.md => third_party/rust/crossbeam-epoch-0.3.1/CHANGELOG.md
rename : third_party/rust/crossbeam-epoch/Cargo.toml => third_party/rust/crossbeam-epoch-0.3.1/Cargo.toml
rename : third_party/rust/tokio-io/LICENSE-APACHE => third_party/rust/crossbeam-epoch-0.3.1/LICENSE-APACHE
rename : third_party/rust/crossbeam-epoch/README.md => third_party/rust/crossbeam-epoch-0.3.1/README.md
rename : third_party/rust/crossbeam-epoch/examples/sanitize.rs => third_party/rust/crossbeam-epoch-0.3.1/examples/sanitize.rs
rename : third_party/rust/crossbeam-epoch/src/atomic.rs => third_party/rust/crossbeam-epoch-0.3.1/src/atomic.rs
rename : third_party/rust/crossbeam-epoch/src/collector.rs => third_party/rust/crossbeam-epoch-0.3.1/src/collector.rs
rename : third_party/rust/crossbeam-epoch/src/default.rs => third_party/rust/crossbeam-epoch-0.3.1/src/default.rs
rename : third_party/rust/crossbeam-epoch/src/deferred.rs => third_party/rust/crossbeam-epoch-0.3.1/src/deferred.rs
rename : third_party/rust/crossbeam-epoch/src/epoch.rs => third_party/rust/crossbeam-epoch-0.3.1/src/epoch.rs
rename : third_party/rust/crossbeam-epoch/src/garbage.rs => third_party/rust/crossbeam-epoch-0.3.1/src/garbage.rs
rename : third_party/rust/crossbeam-epoch/src/guard.rs => third_party/rust/crossbeam-epoch-0.3.1/src/guard.rs
rename : third_party/rust/crossbeam-epoch/src/internal.rs => third_party/rust/crossbeam-epoch-0.3.1/src/internal.rs
rename : third_party/rust/crossbeam-epoch/src/lib.rs => third_party/rust/crossbeam-epoch-0.3.1/src/lib.rs
rename : third_party/rust/crossbeam-epoch/src/sync/list.rs => third_party/rust/crossbeam-epoch-0.3.1/src/sync/list.rs
rename : third_party/rust/crossbeam-epoch/src/sync/queue.rs => third_party/rust/crossbeam-epoch-0.3.1/src/sync/queue.rs
rename : third_party/rust/crossbeam-utils/.cargo-checksum.json => third_party/rust/crossbeam-utils-0.2.2/.cargo-checksum.json
rename : third_party/rust/crossbeam-utils/CHANGELOG.md => third_party/rust/crossbeam-utils-0.2.2/CHANGELOG.md
rename : third_party/rust/crossbeam-utils/Cargo.toml => third_party/rust/crossbeam-utils-0.2.2/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/crossbeam-utils-0.2.2/LICENSE-APACHE
rename : third_party/rust/crossbeam-utils/src/atomic_option.rs => third_party/rust/crossbeam-utils-0.2.2/src/atomic_option.rs
rename : third_party/rust/crossbeam-utils/src/lib.rs => third_party/rust/crossbeam-utils-0.2.2/src/lib.rs
rename : third_party/rust/crossbeam-utils/src/scoped.rs => third_party/rust/crossbeam-utils-0.2.2/src/scoped.rs
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/indexmap/LICENSE-APACHE
rename : third_party/rust/lazycell/.cargo-checksum.json => third_party/rust/lazycell-0.4.0/.cargo-checksum.json
rename : third_party/rust/lazycell/CHANGELOG.md => third_party/rust/lazycell-0.4.0/CHANGELOG.md
rename : third_party/rust/lazycell/Cargo.toml => third_party/rust/lazycell-0.4.0/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/lazycell-0.4.0/LICENSE-APACHE
rename : third_party/rust/lazycell/LICENSE-MIT => third_party/rust/lazycell-0.4.0/LICENSE-MIT
rename : third_party/rust/lazycell/README.md => third_party/rust/lazycell-0.4.0/README.md
rename : third_party/rust/lazycell/src/lib.rs => third_party/rust/lazycell-0.4.0/src/lib.rs
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/rand-0.3.22/LICENSE-APACHE
rename : third_party/rust/bitflags-0.7.0/LICENSE-MIT => third_party/rust/rand-0.3.22/LICENSE-MIT
rename : third_party/rust/rand/appveyor.yml => third_party/rust/rand-0.3.22/appveyor.yml
rename : third_party/rust/slab/.cargo-checksum.json => third_party/rust/slab-0.3.0/.cargo-checksum.json
rename : third_party/rust/slab/Cargo.toml => third_party/rust/slab-0.3.0/Cargo.toml
rename : third_party/rust/slab/README.md => third_party/rust/slab-0.3.0/README.md
rename : third_party/rust/slab/src/lib.rs => third_party/rust/slab-0.3.0/src/lib.rs
rename : third_party/rust/tokio-io/src/read_to_end.rs => third_party/rust/tokio-io/src/io/read_to_end.rs
rename : third_party/rust/tokio-io/src/read_until.rs => third_party/rust/tokio-io/src/io/read_until.rs
extra : rebase_source : 4c022c31e626832d12535d88e7caea452419ac2f
2018-08-24 00:44:17 +03:00
Robert Helmer
5e9fa7fdb4
Bug 1421501 - build integration for vendored msgpack r=glandium
...
MozReview-Commit-ID: 4AKDbOU4aWx
--HG--
extra : rebase_source : 3c35f85a5cf25ba60e33fd64fbb265b490df4a33
2018-08-06 15:10:36 -07:00
Robert Helmer
7dce2bd3b9
Bug 1421501 - vendor msgpack from https://github.com/msgpack/msgpack-c r=glandium
...
MozReview-Commit-ID: 9vzQOuszf3p
--HG--
extra : rebase_source : baecdf560d35aa94b634538e20ea74b5f1d414d3
2018-08-06 15:10:06 -07:00
Robert Helmer
c5e6829a8f
Bug 1421501 - build system integration for libprio r=gps
...
MozReview-Commit-ID: FYHgLmEhr03
--HG--
extra : rebase_source : 4ba057098402c58a40cfa5f4ac804af6762b576a
2018-06-07 19:14:53 -07:00
Robert Helmer
15aebb920e
Bug 1421501 - add vendored libprio from https://github.com/mozilla/libprio r=fkiefer
...
MozReview-Commit-ID: LjbKuuFAMAv
--HG--
extra : rebase_source : 8ff0b5a482d84fcc80011ea143474f9bd80e45a4
2018-06-20 17:21:01 -07:00
Cosmin Sabou
0bd06ad763
Backed out 7 changesets (bug 1421501) for causing build bustages. CLOSED TREE
...
Backed out changeset 492f05d220b1 (bug 1421501)
Backed out changeset 844232d77d0d (bug 1421501)
Backed out changeset 3affc66728b0 (bug 1421501)
Backed out changeset 4d7c3c02ce8d (bug 1421501)
Backed out changeset e27d93ac79a0 (bug 1421501)
Backed out changeset a6c9888b5179 (bug 1421501)
Backed out changeset f7f9e47f0608 (bug 1421501)
2018-08-23 22:46:07 +03:00
Robert Helmer
1b7f123cfb
Bug 1421501 - disable PrioEncoder on Android until libprio supports it r=froydnj
...
This is tracked upstream at https://github.com/mozilla/libprio/issues/15
MozReview-Commit-ID: L5VWKdEitfB
--HG--
extra : rebase_source : c19472a8658c01a2edc69904e36a2c5409af1396
2018-08-23 07:59:44 -07:00
Robert Helmer
bdf3c50c91
Bug 1421501 - build integration for vendored msgpack r=glandium
...
MozReview-Commit-ID: 4AKDbOU4aWx
--HG--
extra : rebase_source : 1900cbd80558397d9552e13b6405b489dd1e3111
2018-08-06 15:10:36 -07:00
Robert Helmer
8cb0ac25e3
Bug 1421501 - vendor msgpack from https://github.com/msgpack/msgpack-c r=glandium
...
MozReview-Commit-ID: 9vzQOuszf3p
--HG--
extra : rebase_source : 10e4592fffaf197bb2a068d9df1edf7a25a7deae
2018-08-06 15:10:06 -07:00
Robert Helmer
3d34b66def
Bug 1421501 - build system integration for libprio r=gps
...
MozReview-Commit-ID: FYHgLmEhr03
--HG--
extra : rebase_source : 96bcf9cca0dff054611c09ad3283c369f502fffe
2018-06-07 19:14:53 -07:00
Robert Helmer
caa5feeb18
Bug 1421501 - add vendored libprio from https://github.com/mozilla/libprio r=fkiefer
...
MozReview-Commit-ID: LjbKuuFAMAv
--HG--
extra : rebase_source : 208e008a3ff09d1f0a5575b81bf31262d9968cac
2018-06-20 17:21:01 -07:00
Gurzau Raul
ac1914ecba
Backed out 6 changesets (bug 1421501) for bustages on security/nss/lib/freebl/mpi/mp_comba.c on a CLOSED TREE
...
Backed out changeset cae4910806c7 (bug 1421501)
Backed out changeset 600a005d3613 (bug 1421501)
Backed out changeset 7381597721d2 (bug 1421501)
Backed out changeset 1ee0d35a041f (bug 1421501)
Backed out changeset 772dea1abb7f (bug 1421501)
Backed out changeset c119767aec7b (bug 1421501)
2018-08-23 17:13:42 +03:00
Robert Helmer
d0af2bd6c6
Bug 1421501 - build integration for vendored msgpack r=glandium
...
MozReview-Commit-ID: 4AKDbOU4aWx
--HG--
extra : rebase_source : f3aabdd38d6051bfef924ff34585940fff155157
2018-08-06 15:10:36 -07:00
Robert Helmer
51ac1fcfc7
Bug 1421501 - vendor msgpack from https://github.com/msgpack/msgpack-c r=glandium
...
MozReview-Commit-ID: 9vzQOuszf3p
--HG--
extra : rebase_source : 51d10a8479d70a39311d16fbb874ac6869e5419f
2018-08-06 15:10:06 -07:00
Robert Helmer
20c3f148db
Bug 1421501 - build system integration for libprio r=gps
...
MozReview-Commit-ID: FYHgLmEhr03
--HG--
extra : rebase_source : def9cb0e882c42035758e589c23cfe405ea3404a
2018-06-07 19:14:53 -07:00
Robert Helmer
353ff80190
Bug 1421501 - add vendored libprio from https://github.com/mozilla/libprio r=fkiefer
...
MozReview-Commit-ID: LjbKuuFAMAv
--HG--
extra : rebase_source : 208e008a3ff09d1f0a5575b81bf31262d9968cac
2018-06-20 17:21:01 -07:00
Henrik Skupin
a16730c92c
Bug 1396821 - Update vendored Rust crates. r=ato
...
MozReview-Commit-ID: D8W2mtdAmpb
--HG--
rename : third_party/rust/rustc-serialize/LICENSE-APACHE => third_party/rust/serde_json/LICENSE-APACHE
rename : third_party/rust/rustc-serialize/LICENSE-MIT => third_party/rust/serde_json/LICENSE-MIT
extra : rebase_source : ca3b49695926adb5ec2ae0eb4cdfd4335a740467
2018-08-22 10:28:40 +02:00
Andreea Pavel
0bcfe81a06
Backed out 6 changesets (bug 1396821) for linux tier2 build bustages on a CLOSED TREE
...
Backed out changeset 2fa2975f97e3 (bug 1396821)
Backed out changeset c5895db52483 (bug 1396821)
Backed out changeset 5c0ddd45f926 (bug 1396821)
Backed out changeset 7c97853a85b9 (bug 1396821)
Backed out changeset b61ce753f01e (bug 1396821)
Backed out changeset 7ef3912feb2c (bug 1396821)
--HG--
rename : third_party/rust/serde_json/LICENSE-APACHE => third_party/rust/rustc-serialize/LICENSE-APACHE
rename : third_party/rust/serde_json/LICENSE-MIT => third_party/rust/rustc-serialize/LICENSE-MIT
2018-08-21 20:20:24 +03:00
Henrik Skupin
0be64a7b29
Bug 1396821 - Update vendored Rust crates. r=ato
...
MozReview-Commit-ID: D8W2mtdAmpb
--HG--
rename : third_party/rust/rustc-serialize/LICENSE-APACHE => third_party/rust/serde_json/LICENSE-APACHE
rename : third_party/rust/rustc-serialize/LICENSE-MIT => third_party/rust/serde_json/LICENSE-MIT
extra : rebase_source : 5e5054596543e501434ecde199c055548fd62271
2018-08-20 17:49:11 +02:00
Henri Sivonen
c82d099240
Bug 1482095 - Update encoding_rs to 0.8.6. r=emk.
...
MozReview-Commit-ID: IqPrrQ7L1lU
2018-08-20 16:08:37 +03:00
Rob Wood
eeb6464d68
Bug 1480841 - Raptor support for running speedometer on geckoview r=jmaher
...
Differential Revision: https://phabricator.services.mozilla.com/D3446
--HG--
extra : moz-landing-system : lando
2018-08-17 18:06:22 +00:00
Ted Mielczarek
28a107217d
bug 1461992 - update vendored copy of voluptuous to 0.11.5. r=gps
...
voluptuous 0.11.1 added support for a `description` argument for Required and
Optional objects, which is useful for adding descriptions in the schema that
we can persist when converting it to json-schema format. This patch vendors
the current version of voluptuous, which is 0.11.5.
MozReview-Commit-ID: 2qt1KE8MPYR
Differential Revision: https://phabricator.services.mozilla.com/D2839
--HG--
extra : rebase_source : f784a529a45fd5467de4dc39ab5db1624004bf2f
2018-08-06 06:45:33 -04:00
Emilio Cobos Álvarez
30c2ae52a8
Bug 1481961: Revendor Rust dependencies. r=me
2018-08-15 16:09:20 +02:00
Emilio Cobos Álvarez
e469d8b05b
Bug 1482043 - Avoid starting the benchmark twice with the same client. r=jmaher
...
benchmar-report.js already has code like:
window.onload = function () {
document.body.removeChild(document.querySelector('main'));
startBenchmark();
}
So we avoid starting the test on load twice.
The throw when the style element was not there was saving us from reporting
twice, but the message interfered with the output that talos tries to parse.
At first sight, looks like this could also be a problem for speedometer, but
turns out it's not, since speedometer uses `<body onload="">`, and window.onload
overrides it.
That means that
https://hg.mozilla.org/mozilla-central/rev/162593bda5e167bea16b28637e85cc9d23f19c7c
is useless for Talos / Raptor, but it may be needed for PGO stuff, so I've kept
it for now.
Differential Revision: https://phabricator.services.mozilla.com/D3062
--HG--
extra : moz-landing-system : lando
2018-08-10 03:26:18 +00:00
Myk Melez
2c2b6eebf9
Bug 1445451 - vendor rkv; r=froydnj
...
MozReview-Commit-ID: KbcADpNltYq
Differential Revision: https://phabricator.services.mozilla.com/D3042
--HG--
rename : third_party/rust/synstructure/.cargo-checksum.json => third_party/rust/synstructure-0.8.1/.cargo-checksum.json
rename : third_party/rust/synstructure/Cargo.toml => third_party/rust/synstructure-0.8.1/Cargo.toml
rename : third_party/rust/synstructure/README.md => third_party/rust/synstructure-0.8.1/README.md
rename : third_party/rust/synstructure/src/lib.rs => third_party/rust/synstructure-0.8.1/src/lib.rs
rename : third_party/rust/synstructure/src/macros.rs => third_party/rust/synstructure-0.8.1/src/macros.rs
extra : moz-landing-system : lando
2018-08-09 19:42:17 +00:00
Joel Maher
a84b8022d5
Bug 1481707 - remove asm.js apps benchmark. r=ahal
...
asm.js apps benchmark is being replaced with wasm-misc
Differential Revision: https://phabricator.services.mozilla.com/D3005
--HG--
extra : moz-landing-system : lando
2018-08-09 15:00:09 +00:00
Daniel Varga
edef4f17d4
Backed out changeset 08fa47a24e89 (bug 1445451) for failing Btup
2018-08-09 02:20:25 +03:00
Myk Melez
2d46903ee1
Bug 1445451 - vendor rkv r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D2246
--HG--
rename : third_party/rust/synstructure/.cargo-checksum.json => third_party/rust/synstructure-0.8.1/.cargo-checksum.json
rename : third_party/rust/synstructure/Cargo.toml => third_party/rust/synstructure-0.8.1/Cargo.toml
rename : third_party/rust/synstructure/README.md => third_party/rust/synstructure-0.8.1/README.md
rename : third_party/rust/synstructure/src/lib.rs => third_party/rust/synstructure-0.8.1/src/lib.rs
rename : third_party/rust/synstructure/src/macros.rs => third_party/rust/synstructure-0.8.1/src/macros.rs
extra : moz-landing-system : lando
2018-08-08 20:59:21 +00:00
Dave Townsend
70702c1d4a
Bug 1481555: Use lldb's python API to summarise nsAtoms. r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D2894
--HG--
extra : moz-landing-system : lando
2018-08-08 15:11:22 +00:00
Emilio Cobos Álvarez
4d3c28d75d
Bug 1481681: Sync some dependencies with servo. r=me
2018-08-08 01:39:57 +02:00
Brindusan Cristian
381e833a9d
Merge mozilla-central to inbound. a=merge CLOSED TREE
2018-08-08 00:58:40 +03:00
Kartikaya Gupta
a2333f3464
Bug 1480433 - Update Cargo lockfiles and re-vendor rust dependencies. r=jrmuizel
...
MozReview-Commit-ID: FUDEEkJZeK
2018-08-07 14:46:40 -04:00
Emilio Cobos Álvarez
0f460b1379
Bug 1481037 - Update StyleBench. r=jmaher
...
Pick upstream changes.
Differential Revision: https://phabricator.services.mozilla.com/D2757
--HG--
extra : moz-landing-system : lando
2018-08-07 15:31:47 +00:00
Margareta Eliza Balazs
8b831bb9be
Backed out changeset e622daed0957 (bug 1481037) for causing speedometer failures on a CLOSED TREE
2018-08-07 14:22:24 +03:00
Emilio Cobos Álvarez
6e7b99caf6
Bug 1481037 - Update StyleBench. r=jmaher
...
Pick upstream changes.
Differential Revision: https://phabricator.services.mozilla.com/D2757
--HG--
extra : moz-landing-system : lando
2018-08-06 14:41:13 +00:00
Jeremy Lempereur
96d35f35bd
Bug 1471708 - Rename the "scroll-position clamping scroll port size" to "visual viewport size". r=botond
...
MozReview-Commit-ID: IWPzXSF5jfR
--HG--
extra : rebase_source : f67d64ef18a643077d5019048399e68acc722337
2018-07-22 21:49:38 +02:00
Cosmin Sabou
7cf1ac297e
Backed out changeset 542243f5f600 (bug 1471708) for failling reftest on gfx/layers/apz/test/reftest/async-scrollbar-1.
2018-08-05 07:57:50 +03:00
Jeremy Lempereur
e591a6945a
Bug 1471708 - Rename the "scroll-position clamping scroll port size" to "visual viewport size". r=botond
...
MozReview-Commit-ID: IWPzXSF5jfR
--HG--
extra : rebase_source : 9d13a680ebf76a5f86c9040a5a16981514435dc8
2018-07-22 21:49:38 +02:00
Bastien Orivel
aa65723136
Bug 1484462 - Revendor Rust dependencies. r=ato
...
--HG--
rename : third_party/rust/crossbeam-deque/.cargo-checksum.json => third_party/rust/crossbeam-deque-0.2.0/.cargo-checksum.json
rename : third_party/rust/crossbeam-deque/.travis.yml => third_party/rust/crossbeam-deque-0.2.0/.travis.yml
rename : third_party/rust/crossbeam-deque/CHANGELOG.md => third_party/rust/crossbeam-deque-0.2.0/CHANGELOG.md
rename : third_party/rust/crossbeam-deque/Cargo.toml => third_party/rust/crossbeam-deque-0.2.0/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/crossbeam-deque-0.2.0/LICENSE-APACHE
rename : third_party/rust/crossbeam-deque/README.md => third_party/rust/crossbeam-deque-0.2.0/README.md
rename : third_party/rust/crossbeam-deque/src/lib.rs => third_party/rust/crossbeam-deque-0.2.0/src/lib.rs
rename : third_party/rust/crossbeam-epoch/.cargo-checksum.json => third_party/rust/crossbeam-epoch-0.3.1/.cargo-checksum.json
rename : third_party/rust/crossbeam-epoch/.travis.yml => third_party/rust/crossbeam-epoch-0.3.1/.travis.yml
rename : third_party/rust/crossbeam-epoch/CHANGELOG.md => third_party/rust/crossbeam-epoch-0.3.1/CHANGELOG.md
rename : third_party/rust/crossbeam-epoch/Cargo.toml => third_party/rust/crossbeam-epoch-0.3.1/Cargo.toml
rename : third_party/rust/tokio-io/LICENSE-APACHE => third_party/rust/crossbeam-epoch-0.3.1/LICENSE-APACHE
rename : third_party/rust/crossbeam-epoch/README.md => third_party/rust/crossbeam-epoch-0.3.1/README.md
rename : third_party/rust/crossbeam-epoch/examples/sanitize.rs => third_party/rust/crossbeam-epoch-0.3.1/examples/sanitize.rs
rename : third_party/rust/crossbeam-epoch/src/atomic.rs => third_party/rust/crossbeam-epoch-0.3.1/src/atomic.rs
rename : third_party/rust/crossbeam-epoch/src/collector.rs => third_party/rust/crossbeam-epoch-0.3.1/src/collector.rs
rename : third_party/rust/crossbeam-epoch/src/default.rs => third_party/rust/crossbeam-epoch-0.3.1/src/default.rs
rename : third_party/rust/crossbeam-epoch/src/deferred.rs => third_party/rust/crossbeam-epoch-0.3.1/src/deferred.rs
rename : third_party/rust/crossbeam-epoch/src/epoch.rs => third_party/rust/crossbeam-epoch-0.3.1/src/epoch.rs
rename : third_party/rust/crossbeam-epoch/src/garbage.rs => third_party/rust/crossbeam-epoch-0.3.1/src/garbage.rs
rename : third_party/rust/crossbeam-epoch/src/guard.rs => third_party/rust/crossbeam-epoch-0.3.1/src/guard.rs
rename : third_party/rust/crossbeam-epoch/src/internal.rs => third_party/rust/crossbeam-epoch-0.3.1/src/internal.rs
rename : third_party/rust/crossbeam-epoch/src/lib.rs => third_party/rust/crossbeam-epoch-0.3.1/src/lib.rs
rename : third_party/rust/crossbeam-epoch/src/sync/list.rs => third_party/rust/crossbeam-epoch-0.3.1/src/sync/list.rs
rename : third_party/rust/crossbeam-epoch/src/sync/queue.rs => third_party/rust/crossbeam-epoch-0.3.1/src/sync/queue.rs
rename : third_party/rust/crossbeam-utils/.cargo-checksum.json => third_party/rust/crossbeam-utils-0.2.2/.cargo-checksum.json
rename : third_party/rust/crossbeam-utils/CHANGELOG.md => third_party/rust/crossbeam-utils-0.2.2/CHANGELOG.md
rename : third_party/rust/crossbeam-utils/Cargo.toml => third_party/rust/crossbeam-utils-0.2.2/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/crossbeam-utils-0.2.2/LICENSE-APACHE
rename : third_party/rust/crossbeam-utils/src/atomic_option.rs => third_party/rust/crossbeam-utils-0.2.2/src/atomic_option.rs
rename : third_party/rust/crossbeam-utils/src/lib.rs => third_party/rust/crossbeam-utils-0.2.2/src/lib.rs
rename : third_party/rust/crossbeam-utils/src/scoped.rs => third_party/rust/crossbeam-utils-0.2.2/src/scoped.rs
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/indexmap/LICENSE-APACHE
rename : third_party/rust/lazycell/.cargo-checksum.json => third_party/rust/lazycell-0.4.0/.cargo-checksum.json
rename : third_party/rust/lazycell/CHANGELOG.md => third_party/rust/lazycell-0.4.0/CHANGELOG.md
rename : third_party/rust/lazycell/Cargo.toml => third_party/rust/lazycell-0.4.0/Cargo.toml
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/lazycell-0.4.0/LICENSE-APACHE
rename : third_party/rust/lazycell/LICENSE-MIT => third_party/rust/lazycell-0.4.0/LICENSE-MIT
rename : third_party/rust/lazycell/README.md => third_party/rust/lazycell-0.4.0/README.md
rename : third_party/rust/lazycell/src/lib.rs => third_party/rust/lazycell-0.4.0/src/lib.rs
rename : third_party/rust/bitflags-0.7.0/LICENSE-APACHE => third_party/rust/rand-0.3.22/LICENSE-APACHE
rename : third_party/rust/bitflags-0.7.0/LICENSE-MIT => third_party/rust/rand-0.3.22/LICENSE-MIT
rename : third_party/rust/rand/appveyor.yml => third_party/rust/rand-0.3.22/appveyor.yml
rename : third_party/rust/slab/.cargo-checksum.json => third_party/rust/slab-0.3.0/.cargo-checksum.json
rename : third_party/rust/slab/Cargo.toml => third_party/rust/slab-0.3.0/Cargo.toml
rename : third_party/rust/slab/README.md => third_party/rust/slab-0.3.0/README.md
rename : third_party/rust/slab/src/lib.rs => third_party/rust/slab-0.3.0/src/lib.rs
rename : third_party/rust/tokio-io/src/read_to_end.rs => third_party/rust/tokio-io/src/io/read_to_end.rs
rename : third_party/rust/tokio-io/src/read_until.rs => third_party/rust/tokio-io/src/io/read_until.rs
2018-08-23 13:15:36 +01:00
Ionut Goldan
8741096bbe
Bug 1472804 - Add SunSpider as a jsshell-bench test r=jmaher
...
Differential Revision: https://phabricator.services.mozilla.com/D2507
--HG--
extra : moz-landing-system : lando
2018-08-03 07:19:15 +00:00
Kartikaya Gupta
157d196498
Bug 1479432 - Update Cargo lockfiles and re-vendor rust dependencies. r=jrmuizel
...
MozReview-Commit-ID: BhLXnUXBZpq
--HG--
extra : rebase_source : dc44ec6d19d96071567937a8d5258e4b380a5136
2018-08-02 10:20:54 -04:00
Cameron McCormack
1f640400bb
Bug 1475197 - Part 2: Revendor Rust dependencies. r=emilio
...
MozReview-Commit-ID: HRMXpPx8Lls
--HG--
extra : rebase_source : 5a1092d388f1da1e9945e26785f0e727a6dd0ce5
2018-08-01 10:29:48 +10:00
Ted Mielczarek
6127719398
bug 1409276 - vendor a newer version of the cc crate. r=mbrubreck
...
The cc crate had a bug where it would ignore compiler arguments in compilers
specified in environment variables. We update to a copy with that issue fixed:
9eaa56536e
MozReview-Commit-ID: FE8AywUEMoc
--HG--
extra : rebase_source : 565b3464a1be4278b211312c8703aadc53cab777
2018-07-11 07:21:48 -04:00
Dan Minor
93b2696647
Bug 1476408 - Only build stats code if examples are enabled; r=TD-Linux
...
Summary: I didn't have time to get this upstreamed prior to this update.
Reviewers: TD-Linux
Tags: #secure-revision
Bug #: 1476408
Differential Revision: https://phabricator.services.mozilla.com/D2359
--HG--
extra : rebase_source : ec43830e191d7c0d899d93f08d912c64a4eba002
2018-07-24 10:37:28 -04:00
Dan Minor
48e87ceaf3
Bug 1476408 - Update libaom to rev b25610052a1398032320008d69b51d2da94f5928; r=TD-Linux
...
Tags: #secure-revision
Bug #: 1476408
Differential Revision: https://phabricator.services.mozilla.com/D2358
--HG--
extra : rebase_source : fa2438ada27a67e400617705014460b6d5ff485c
2018-07-23 14:28:45 -04:00
Csoregi Natalia
3708e71462
Merge inbound to mozilla-central. a=merge
2018-07-27 00:58:11 +03:00
Axel Hecht
12d764f3a5
bug 1478343, update compare-locales to 3.3, fluent.syntax to 0.8, r=stas
...
This is a massive update, changes have been individually reviewed
in https://hg.mozilla.org/l10n/compare-locales
MozReview-Commit-ID: BlpuXcLoA34
--HG--
rename : third_party/python/compare-locales/compare_locales/checks.py => third_party/python/compare-locales/compare_locales/checks/dtd.py
rename : third_party/python/fluent/tools/migrate/blame.py => third_party/python/fluent/fluent/migrate/blame.py
rename : third_party/python/fluent/tools/migrate/migrate-l10n.py => third_party/python/fluent/fluent/migrate/tool.py
extra : rebase_source : fc4fedc7a8d8c83033b3c95693723e8dbf858de7
2018-07-25 15:18:06 +02:00
Cosmin Sabou
fdafc33d90
Backed out 2 changesets (bug 1475197) for causing linux build bustages because of compile errors.
...
Backed out changeset 108e22d963cb (bug 1475197)
Backed out changeset 4bd5f8588422 (bug 1475197)
2018-07-26 07:38:47 +03:00
Cameron McCormack
103876749a
Bug 1475197 - Part 2: Update Cargo.lock and re-vendor Rust dependencies. r=emilio
...
MozReview-Commit-ID: GHrD4b8xvcC
--HG--
extra : rebase_source : b5e0e3425e8cceabe4bdcd9722420182fd839035
2018-07-17 12:15:08 +10:00
Ionut Goldan
4b89c24e3d
Bug 1472803 - Remove sunspider-0.9.1 r=jmaher
...
MozReview-Commit-ID: ExfQ2BJ5C0n
--HG--
extra : rebase_source : 9227984d0d14af19181c58a18707ac390b3207e8
2018-07-19 15:48:33 +03:00
Ionut Goldan
bdf791d659
Bug 1472803 - Run SunSpider in browser mode r=jmaher
...
MozReview-Commit-ID: GgWLVx5RveF
--HG--
extra : rebase_source : 3c00a1b0feb6831e3355e70022ae57e2d10be09b
2018-07-13 16:38:19 +03:00
Tooru Fujisawa
3f86b21030
Bug 1473266 - Remove in-tree newline_if_not_empty. r=Yoric,glandium
2018-07-26 15:24:06 +09:00
Emilio Cobos Álvarez
d487539dd5
Bug 1477883: Revendor Rust dependencies. r=me
...
MozReview-Commit-ID: LQu7Lb4GMdV
2018-07-24 04:03:26 +02:00
Jeff Muizelaar
25e708fd11
Bug 1477400. Update Cargo lockfiles and re-vendor rust dependencies
2018-07-21 12:54:38 -04:00
Cosmin Sabou
0676c53741
Merge mozilla-central to mozilla-inbound. a=merge
2018-07-21 00:51:00 +03:00
Jeff Muizelaar
4e530d2f5f
Bug 1476636. Update Cargo lockfiles, re-vendor rust dependencies
...
--HG--
rename : third_party/rust/euclid-0.17.3/LICENSE-APACHE => third_party/rust/smallvec/LICENSE-APACHE
2018-07-20 17:24:55 -04:00
Joel Maher
04f65a0f76
Bug 1473334 - run the webaudio benchmark in raptor instead of AWFY. r=rwood
...
port the webaudio benchmark from arewefastyet.com to in-tree raptor.
Differential Revision: https://phabricator.services.mozilla.com/D2224
--HG--
extra : moz-landing-system : lando
2018-07-19 19:03:43 +00:00
Kartikaya Gupta
2e759049d9
Bug 1475252 - Update Cargo lockfiles, re-vendor rust dependencies, and re-generate FFI header. r=jrmuizel
...
MozReview-Commit-ID: 72cMhrmtbIq
--HG--
extra : rebase_source : a66d0da4efd86d3a6f164f35c753053719ebc5f8
2018-07-18 12:04:12 -04:00
Dan Minor
f893e098df
Bug 1445683 - Do not build aomstats unless examples are enabled; r=chmanchester
...
The aomstats library is only used in the code examples, but we assume that all
libraries should be linked into libxul, which leads to an unresolved external
dependency on fatal at link time. This adds a guard to only build aomstats if
we are building the examples.
MozReview-Commit-ID: 8CRK3klUPk7
--HG--
extra : rebase_source : a50680122e4b55497a835101ef3e0f0c96cdd79e
2018-06-26 09:56:13 -04:00
Dan Minor
a2a0f53596
Bug 1445683 - Update aom to v1.0.0; r=jya
...
Update aom to rev d14c5bb4f336ef1842046089849dee4a301fbbf0.
MozReview-Commit-ID: YoPHbFHRq2
--HG--
rename : third_party/aom/build/cmake/aom_config.c.cmake => third_party/aom/build/cmake/aom_config.c.template
rename : third_party/aom/md5_utils.h => third_party/aom/common/md5_utils.h
rename : third_party/aom/warnings.h => third_party/aom/common/warnings.h
rename : third_party/aom/webmenc.h => third_party/aom/common/webmenc.h
rename : third_party/aom/y4minput.h => third_party/aom/common/y4minput.h
rename : third_party/aom/aomstats.h => third_party/aom/stats/aomstats.h
rename : third_party/aom/rate_hist.h => third_party/aom/stats/rate_hist.h
extra : rebase_source : 6e3d836d1d36879f862ed74227522e422f4fb5c1
2018-06-21 13:47:50 -04:00
Andreea Pavel
1261098dca
Backed out 3 changesets (bug 1474300) on request by kats for introducing a crasher a=backout
...
Backed out changeset f7659b60b7b0 (bug 1474300)
Backed out changeset a65429a135c7 (bug 1474300)
Backed out changeset 376e702ed3ea (bug 1474300)
2018-07-15 17:57:36 +03:00
Kartikaya Gupta
0be7f6895b
Bug 1474300 - Update Cargo lockfiles and re-vendor rust dependencies. r=Gankro
...
MozReview-Commit-ID: DnmlYWRlSl9
--HG--
extra : rebase_source : a5c34323fa3a28def00572fa5a137183bfeb1c54
2018-07-12 10:35:25 -04:00
Mike Hommey
1ad733c5c4
Bug 1474871 - Link dump_syms against rustc-demangle. r=ted
...
The new version of breakpad imported in bug 1309172 doesn't demangle
rust symbols at all, contrary to before, where it tried to C++ demangle
them, which worked for many, although far from all. It however has
rust-demangle support as long as it's linked against a copy of the
rust-demangle-capi crate from https://github.com/luser/rust-demangle-capi/
This imports the code from the rust-demangle-capi crate but because of
some build system complications it's not taken as-is:
- it uses rusty-cheddar, which is deprecated, to generate a C header.
- rusty-cheddar depends on syntex_syntax, which now fails to build.
- rust-demangle-capi has crate-type staticlib, which can't be used
as a dependency in a Cargo.toml. For that reason, we can't create
a fake crate that depends on it to have it vendored.
Overall, it's only a few lines of rust, and the C header can be written
manually, so this is what we do here. The created crate is named in a way
specific to dump_syms.
The build system doesn't know how to figure out what system libraries
are required to link rust static libraries, although the rust compiler
has /some/ support to get the information, so we handle that manually.
--HG--
extra : rebase_source : 9f5a9bfe2148d3040e11c7121a88e85a7f2d5c53
2018-07-12 10:23:12 +09:00
Dan Minor
337e0066fd
Bug 1371485 - Update gyp to 4d467626b0b9f59a85fb81ca4d7ea9eca99b9d8f; r=chmanchester
...
Tags: #secure-revision
Bug #: 1371485
Differential Revision: https://phabricator.services.mozilla.com/D1800
--HG--
extra : rebase_source : c43b24b09e1391f7242e0cff85de67ac29a04814
2018-06-21 14:40:47 -04:00
Boris Chiou
f0bf583292
Bug 1467277 - Bump euclid to 0.18 for style, style_traits, malloc_size_of, and tests. r=emilio
...
In order to drop old euclid version, we still need to bump euclid for
plane-split and gfx/*. However, it needs more update and is not related to
this bug, so let's do that in other place. Here, we bump euclid to
0.18.1, and update style/values/generics/transform.rs for it.
MozReview-Commit-ID: JfNAxkR8wgs
--HG--
rename : third_party/rust/euclid/.cargo-checksum.json => third_party/rust/euclid-0.17.3/.cargo-checksum.json
rename : third_party/rust/euclid/Cargo.toml => third_party/rust/euclid-0.17.3/Cargo.toml
rename : third_party/rust/euclid/src/homogen.rs => third_party/rust/euclid-0.17.3/src/homogen.rs
rename : third_party/rust/euclid/src/length.rs => third_party/rust/euclid-0.17.3/src/length.rs
rename : third_party/rust/euclid/src/lib.rs => third_party/rust/euclid-0.17.3/src/lib.rs
rename : third_party/rust/euclid/src/macros.rs => third_party/rust/euclid-0.17.3/src/macros.rs
rename : third_party/rust/euclid/src/point.rs => third_party/rust/euclid-0.17.3/src/point.rs
rename : third_party/rust/euclid/src/rect.rs => third_party/rust/euclid-0.17.3/src/rect.rs
rename : third_party/rust/euclid/src/rotation.rs => third_party/rust/euclid-0.17.3/src/rotation.rs
rename : third_party/rust/euclid/src/scale.rs => third_party/rust/euclid-0.17.3/src/scale.rs
rename : third_party/rust/euclid/src/side_offsets.rs => third_party/rust/euclid-0.17.3/src/side_offsets.rs
rename : third_party/rust/euclid/src/size.rs => third_party/rust/euclid-0.17.3/src/size.rs
rename : third_party/rust/euclid/src/transform2d.rs => third_party/rust/euclid-0.17.3/src/transform2d.rs
rename : third_party/rust/euclid/src/transform3d.rs => third_party/rust/euclid-0.17.3/src/transform3d.rs
rename : third_party/rust/euclid/src/trig.rs => third_party/rust/euclid-0.17.3/src/trig.rs
rename : third_party/rust/euclid/src/vector.rs => third_party/rust/euclid-0.17.3/src/vector.rs
extra : rebase_source : 0594429c74c7391f80b4e291cd7fe9cbddd72b33
2018-07-09 12:10:50 -07:00
Emilio Cobos Álvarez
748d49fe57
Bug 1472538: Revendor dependencies.
...
MozReview-Commit-ID: 453LPDCC88b
--HG--
rename : third_party/rust/proc-macro2-0.3.6/.travis.yml => third_party/rust/proc-macro2-0.3.5/.travis.yml
rename : third_party/rust/proc-macro2-0.3.6/LICENSE-APACHE => third_party/rust/proc-macro2-0.3.5/LICENSE-APACHE
rename : third_party/rust/proc-macro2-0.3.6/LICENSE-MIT => third_party/rust/proc-macro2-0.3.5/LICENSE-MIT
rename : third_party/rust/proc-macro2-0.3.6/README.md => third_party/rust/proc-macro2-0.3.5/README.md
rename : third_party/rust/proc-macro2-0.3.6/src/strnom.rs => third_party/rust/proc-macro2-0.3.5/src/strnom.rs
rename : third_party/rust/proc-macro2-0.3.6/src/unstable.rs => third_party/rust/proc-macro2-0.3.5/src/unstable.rs
2018-07-01 16:04:49 +02:00
Dave Hunt
a631fc714d
Bug 1472201 - Vendor pytest 3.6.2 and dependencies; r=ahal
...
MozReview-Commit-ID: 5qfK6OygVMH
--HG--
rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE
rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py
rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py
rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py
extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
2018-06-29 15:37:31 +01:00
Kartikaya Gupta
cf154b2dd4
Bug 1471104 - Follow-up to fix incorrect rust vendoring. rs=xidorn
2018-06-28 09:31:57 -04:00
Henri Sivonen
860839ae50
Bug 1471533 - Update encoding_rs to 0.8.4. r=emk.
...
MozReview-Commit-ID: 40sRHT77Kzk
--HG--
extra : rebase_source : 38d8b8ca3e1c4a16aa0ed147f4a2b77a782d327d
2018-06-27 12:30:03 +03:00
Dorel Luca
bc2fbd0648
Merge mozilla-central to autoland
...
--HG--
extra : rebase_source : 0f5c3c308ce6ddd6fb9fcb49b83d4450a24d67dc
2018-06-27 13:33:04 +03:00
Dorel Luca
f51c4fa5d9
Merge mozilla-inbound to mozilla-central. a=merge
2018-06-27 13:26:49 +03:00
Xidorn Quan
46cae3d7aa
Bug 1471104 followup - Upgrade cssparser and revendor.
...
MozReview-Commit-ID: 74rBgkJEcYd
--HG--
extra : rebase_source : a30d17b3d7e24f1a61c01d1dc442d6ce60c1dde3
extra : source : 8ff268ee87b7392391a6b6aa981f9180c45b27b6
2018-06-27 10:43:21 +10:00
Mike Hommey
733f22fb0d
Bug 1471096 - Vendor rustc_version. r=froydnj
...
--HG--
extra : rebase_source : ea0b7697b33e1ec6554ba90a354c8b314293800c
2018-06-26 10:00:26 +09:00
Henri Sivonen
330ef8028e
Bug 1470131 - Update encoding_rs to 0.8.3 for non-ASCII UTF-16 to UTF-8 encode performance. r=emk.
...
MozReview-Commit-ID: L6DhB63WzKp
--HG--
extra : rebase_source : 6e244d3dfc83a67222c6fc269261ef33d3af613c
2018-06-21 15:34:16 +03:00
Joel Maher
7b326fba08
Bug 1469280 - Fix raptor speedometer score calculation. r=rwood
...
ensure that raptor summarizes data properly from all benchmarks
Differential Revision: https://phabricator.services.mozilla.com/D1815
2018-06-26 10:53:05 +00:00
Dave Hunt
6a3d72d58f
Bug 1428362 - Vendor blessings via |mach vendor python|; r=ahal
...
MozReview-Commit-ID: 7suX72iyYEV
--HG--
extra : rebase_source : 5add0fe52017f69062567debacd1967b98c0507d
extra : source : 8218a2d572c59cd4c67f115fa0c9fcd82c98f5a1
2018-05-31 13:54:43 +01:00
Joel Maher
9c7f5155eb
Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
...
stylebench and motionmark run in talos, we want these running in raptor
Differential Revision: https://phabricator.services.mozilla.com/D1814
2018-06-25 20:28:58 +00:00
Dave Hunt
e991dba156
Bug 1466211 - Vendor voluptuous via |mach vendor python|; r=ahal
...
MozReview-Commit-ID: 21q9i0lStU3
--HG--
extra : rebase_source : 966a1dd7c1c8b7786bd17de35989fef468e2baed
2018-06-01 18:56:23 +01:00
Dave Hunt
c0e75ef175
Bug 1466211 - Vendor json-e via |mach vendor python|; r=ahal
...
MozReview-Commit-ID: DPatUFNHDIR
--HG--
extra : rebase_source : d471abd8821cd87083f48a486daed79388f6a476
2018-06-01 18:42:11 +01:00
Rob Wood
ee92debbd0
Bug 1477272 - Fix raptor webaudio benchmark wav files; r=igoldan
...
MozReview-Commit-ID: 6wufkwwhord
--HG--
extra : rebase_source : bea9c24b18034df71e6dd7815c1fe64b856f9af1
2018-07-20 10:48:49 -04:00
Margareta Eliza Balazs
7a2b0ea957
Backed out 7 changesets (bug 1466211) for bustage e.g. z/task_1529662815/src/js/src/configure --enable-ctypes --enable-optimize on a CLOSED TREE
...
Backed out changeset 6680ca0acc27 (bug 1466211)
Backed out changeset dfdf4ea83655 (bug 1466211)
Backed out changeset 23eb377e2e6d (bug 1466211)
Backed out changeset fe821d61ecbf (bug 1466211)
Backed out changeset e04950c7c496 (bug 1466211)
Backed out changeset 4b197754381a (bug 1466211)
Backed out changeset 1695d4464c54 (bug 1466211)
2018-06-22 14:33:21 +03:00
Dave Hunt
aed322c276
Bug 1466211 - Vendor voluptuous via |mach vendor python|; r=ahal
...
MozReview-Commit-ID: 21q9i0lStU3
--HG--
extra : rebase_source : 966a1dd7c1c8b7786bd17de35989fef468e2baed
2018-06-01 18:56:23 +01:00
Dave Hunt
c1dfb5d2d3
Bug 1466211 - Vendor json-e via |mach vendor python|; r=ahal
...
MozReview-Commit-ID: DPatUFNHDIR
--HG--
extra : rebase_source : d471abd8821cd87083f48a486daed79388f6a476
2018-06-01 18:42:11 +01:00
Gurzau Raul
9862c7afdc
Backed out changeset 96496ebab2d9 (bug 1466853) for StyleBench failures on a CLOSED TREE
2018-06-22 02:51:38 +03:00
Joel Maher
2495332bb2
Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
...
Currently stylebench and motionmark run on talos, these are ideal benchmarks to run on raptor
Differential Revision: https://phabricator.services.mozilla.com/D1752
2018-06-21 21:00:41 +00:00
Gurzau Raul
977ed7b22b
Backed out changeset 683a682e52b2 (bug 1466853) for flake fail on checkouts/gecko/testing/raptor/raptor/benchmark.py on a CLOSED TREE
2018-06-21 23:57:30 +03:00
Joel Maher
63ddbd28ee
Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
...
Currently stylebench and motionmark run on talos, these are ideal benchmarks to run on raptor
Differential Revision: https://phabricator.services.mozilla.com/D1752
2018-06-21 20:34:51 +00:00
Kartikaya Gupta
ba31bba005
Bug 1468950 - Update Cargo lockfiles and re-vendor rust dependencies. r=Gankro
...
MozReview-Commit-ID: 3kcDWGBPXt9
--HG--
rename : third_party/rust/proc-macro2/.cargo-checksum.json => third_party/rust/proc-macro2-0.3.6/.cargo-checksum.json
rename : third_party/rust/proc-macro2/.travis.yml => third_party/rust/proc-macro2-0.3.6/.travis.yml
rename : third_party/rust/proc-macro2/Cargo.toml => third_party/rust/proc-macro2-0.3.6/Cargo.toml
rename : third_party/rust/proc-macro2/README.md => third_party/rust/proc-macro2-0.3.6/README.md
rename : third_party/rust/proc-macro2/src/lib.rs => third_party/rust/proc-macro2-0.3.6/src/lib.rs
rename : third_party/rust/proc-macro2/src/stable.rs => third_party/rust/proc-macro2-0.3.6/src/stable.rs
rename : third_party/rust/proc-macro2/src/strnom.rs => third_party/rust/proc-macro2-0.3.6/src/strnom.rs
rename : third_party/rust/proc-macro2/src/unstable.rs => third_party/rust/proc-macro2-0.3.6/src/unstable.rs
rename : third_party/rust/proc-macro2/tests/test.rs => third_party/rust/proc-macro2-0.3.6/tests/test.rs
rename : third_party/rust/quote/.cargo-checksum.json => third_party/rust/quote-0.5.2/.cargo-checksum.json
rename : third_party/rust/quote/Cargo.toml => third_party/rust/quote-0.5.2/Cargo.toml
rename : third_party/rust/quote/README.md => third_party/rust/quote-0.5.2/README.md
rename : third_party/rust/quote/src/lib.rs => third_party/rust/quote-0.5.2/src/lib.rs
rename : third_party/rust/quote/src/to_tokens.rs => third_party/rust/quote-0.5.2/src/to_tokens.rs
rename : third_party/rust/quote/src/tokens.rs => third_party/rust/quote-0.5.2/src/tokens.rs
rename : third_party/rust/quote/tests/test.rs => third_party/rust/quote-0.5.2/tests/test.rs
rename : third_party/rust/syn/.cargo-checksum.json => third_party/rust/syn-0.13.1/.cargo-checksum.json
rename : third_party/rust/syn/Cargo.toml => third_party/rust/syn-0.13.1/Cargo.toml
rename : third_party/rust/syn/README.md => third_party/rust/syn-0.13.1/README.md
rename : third_party/rust/syn/src/attr.rs => third_party/rust/syn-0.13.1/src/attr.rs
rename : third_party/rust/syn/src/buffer.rs => third_party/rust/syn-0.13.1/src/buffer.rs
rename : third_party/rust/syn/src/data.rs => third_party/rust/syn-0.13.1/src/data.rs
rename : third_party/rust/syn/src/derive.rs => third_party/rust/syn-0.13.1/src/derive.rs
rename : third_party/rust/syn/src/error.rs => third_party/rust/syn-0.13.1/src/error.rs
rename : third_party/rust/syn/src/expr.rs => third_party/rust/syn-0.13.1/src/expr.rs
rename : third_party/rust/syn/src/file.rs => third_party/rust/syn-0.13.1/src/file.rs
rename : third_party/rust/syn/src/gen/fold.rs => third_party/rust/syn-0.13.1/src/gen/fold.rs
rename : third_party/rust/syn/src/gen/visit.rs => third_party/rust/syn-0.13.1/src/gen/visit.rs
rename : third_party/rust/syn/src/gen/visit_mut.rs => third_party/rust/syn-0.13.1/src/gen/visit_mut.rs
rename : third_party/rust/syn/src/gen_helper.rs => third_party/rust/syn-0.13.1/src/gen_helper.rs
rename : third_party/rust/syn/src/generics.rs => third_party/rust/syn-0.13.1/src/generics.rs
rename : third_party/rust/syn/src/ident.rs => third_party/rust/syn-0.13.1/src/ident.rs
rename : third_party/rust/syn/src/item.rs => third_party/rust/syn-0.13.1/src/item.rs
rename : third_party/rust/syn/src/lib.rs => third_party/rust/syn-0.13.1/src/lib.rs
rename : third_party/rust/syn/src/lifetime.rs => third_party/rust/syn-0.13.1/src/lifetime.rs
rename : third_party/rust/syn/src/lit.rs => third_party/rust/syn-0.13.1/src/lit.rs
rename : third_party/rust/syn/src/mac.rs => third_party/rust/syn-0.13.1/src/mac.rs
rename : third_party/rust/syn/src/macros.rs => third_party/rust/syn-0.13.1/src/macros.rs
rename : third_party/rust/syn/src/op.rs => third_party/rust/syn-0.13.1/src/op.rs
rename : third_party/rust/syn/src/parse_quote.rs => third_party/rust/syn-0.13.1/src/parse_quote.rs
rename : third_party/rust/syn/src/parsers.rs => third_party/rust/syn-0.13.1/src/parsers.rs
rename : third_party/rust/syn/src/path.rs => third_party/rust/syn-0.13.1/src/path.rs
rename : third_party/rust/syn/src/punctuated.rs => third_party/rust/syn-0.13.1/src/punctuated.rs
rename : third_party/rust/syn/src/spanned.rs => third_party/rust/syn-0.13.1/src/spanned.rs
rename : third_party/rust/syn/src/synom.rs => third_party/rust/syn-0.13.1/src/synom.rs
rename : third_party/rust/syn/src/token.rs => third_party/rust/syn-0.13.1/src/token.rs
rename : third_party/rust/syn/src/tt.rs => third_party/rust/syn-0.13.1/src/tt.rs
rename : third_party/rust/syn/src/ty.rs => third_party/rust/syn-0.13.1/src/ty.rs
extra : rebase_source : bda7c9d57b337b22b0cf8c095c4d3a79f4cd2682
2018-06-21 08:22:02 -04:00
Henri Sivonen
57c6e581fe
Bug 1469512 - Update encoding_rs to 0.8.1. r=emk.
...
MozReview-Commit-ID: 4iIHsLsXP1r
--HG--
extra : rebase_source : fdee4c397ff9a1c2f8a84f1b63e6ed6d5a633b23
2018-06-19 12:46:46 +03:00
Joel Maher
3732d000de
Bug 1465360 - add asm.js-apps shell benchmark to jsshell-bench. r=ahal
2018-06-19 08:58:20 -04:00
Emilio Cobos Álvarez
5d02e2677d
Bug 1469228: Revendor rust dependencies. r=me
...
MozReview-Commit-ID: KEx2kxGH0iO
2018-06-18 10:43:07 +02:00
Andreas Tolfsen
14a4db48fa
Bug 1441204 - Upgrade rust-ini from 0.10.2 to 0.10.3. r=maja_zf
...
MozReview-Commit-ID: DZp1wg7uVLN
--HG--
extra : rebase_source : 6e90df2a83accff53d021303e9bafc46aa1afe98
2018-06-14 13:05:30 -07:00
Andreas Tolfsen
fcac0dc071
Bug 1441204 - Upgrade winreg crate from 0.5.0 to 0.5.1. r=maja_zf
...
MozReview-Commit-ID: EtBBvUGnTzb
--HG--
extra : rebase_source : e31a8b58b8726a24cd7aa760440b13ddc6f994e3
2018-06-14 13:04:25 -07:00
Andreas Tolfsen
988a7b847b
Bug 1441204 - Upgrade unicode-segmentation from 1.1.0 to 1.2.1. r=maja_zf
...
MozReview-Commit-ID: 1KUU2U7AVz4
--HG--
extra : rebase_source : fe6951e60f80fe09ea215b05213116087a3af3b9
2018-06-14 13:01:20 -07:00
Andreas Tolfsen
ecd221fa64
Bug 1441204 - Upgrade time crate from 0.1.38 to 0.1.40. r=maja_zf
...
MozReview-Commit-ID: 3bdeeSwyE8Q
--HG--
extra : rebase_source : b3d57f59cc40534f9aee57140e759e435c10ee43
2018-06-14 12:58:45 -07:00
Andreas Tolfsen
08c845b39c
Bug 1441204 - Upgrade zip crate from 0.3.1 to 0.3.3. r=maja_zf
...
MozReview-Commit-ID: LjzVBrGK4LM
--HG--
extra : rebase_source : 0326e546304339ade10e312df0a619f627b115e7
2018-06-14 12:57:36 -07:00
Andreas Tolfsen
d167d54ea0
Bug 1441204 - Upgrade log crate from 0.4.1 to 0.4.2. r=maja_zf
...
MozReview-Commit-ID: FMIeUf55uzU
--HG--
extra : rebase_source : d9aa60055cbb1bb313e0c695ad08599af25b155a
2018-06-14 12:49:09 -07:00
Andreas Tolfsen
d7d1dbd6fa
Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf
...
MozReview-Commit-ID: K1FK0cr0eaJ
--HG--
extra : rebase_source : 5ac6d8cd76768a2525489165edbd75f79a5723ef
2018-06-14 12:47:45 -07:00
Andreas Tolfsen
393c2a2412
Bug 1441204 - Upgrade clap from 2.29.0 to 2.31.2. r=maja_zf
...
MozReview-Commit-ID: 97HZvS13yg
--HG--
rename : third_party/rust/strsim/.cargo-checksum.json => third_party/rust/strsim-0.6.0/.cargo-checksum.json
rename : third_party/rust/strsim/CHANGELOG.md => third_party/rust/strsim-0.6.0/CHANGELOG.md
rename : third_party/rust/strsim/Cargo.toml => third_party/rust/strsim-0.6.0/Cargo.toml
rename : third_party/rust/strsim/LICENSE => third_party/rust/strsim-0.6.0/LICENSE
rename : third_party/rust/strsim/README.md => third_party/rust/strsim-0.6.0/README.md
rename : third_party/rust/strsim/dev => third_party/rust/strsim-0.6.0/dev
rename : third_party/rust/strsim/src/lib.rs => third_party/rust/strsim-0.6.0/src/lib.rs
rename : third_party/rust/strsim/tests/lib.rs => third_party/rust/strsim-0.6.0/tests/lib.rs
extra : rebase_source : bc29633dad9e1436f93eb464504d9114a19a0812
2018-06-14 12:45:55 -07:00
J.C. Jones
6a8584d6ab
Bug 1468349 - Vendor in new freebsd deps for u2f-hid-rs r=mgoodwin
...
MozReview-Commit-ID: 26E21CeZiLj
--HG--
rename : third_party/rust/nom/.travis.yml => third_party/rust/nom-1.2.4/.travis.yml
rename : third_party/rust/nom/.cargo-checksum.json => third_party/rust/nom-1.2.4/nom/.cargo-checksum.json
rename : third_party/rust/nom/.travis.yml => third_party/rust/nom-1.2.4/nom/.travis.yml
rename : third_party/rust/nom/CHANGELOG.md => third_party/rust/nom-1.2.4/nom/CHANGELOG.md
rename : third_party/rust/nom/Cargo.toml => third_party/rust/nom-1.2.4/nom/Cargo.toml
rename : third_party/rust/nom/LICENSE => third_party/rust/nom-1.2.4/nom/LICENSE
rename : third_party/rust/nom/src/bits.rs => third_party/rust/nom-1.2.4/nom/src/bits.rs
rename : third_party/rust/nom/src/bytes.rs => third_party/rust/nom-1.2.4/nom/src/bytes.rs
rename : third_party/rust/nom/src/character.rs => third_party/rust/nom-1.2.4/nom/src/character.rs
rename : third_party/rust/nom/src/internal.rs => third_party/rust/nom-1.2.4/nom/src/internal.rs
rename : third_party/rust/nom/src/lib.rs => third_party/rust/nom-1.2.4/nom/src/lib.rs
rename : third_party/rust/nom/src/macros.rs => third_party/rust/nom-1.2.4/nom/src/macros.rs
rename : third_party/rust/nom/src/methods.rs => third_party/rust/nom-1.2.4/nom/src/methods.rs
rename : third_party/rust/nom/src/nom.rs => third_party/rust/nom-1.2.4/nom/src/nom.rs
rename : third_party/rust/nom/src/regexp.rs => third_party/rust/nom-1.2.4/nom/src/regexp.rs
rename : third_party/rust/nom/src/str.rs => third_party/rust/nom-1.2.4/nom/src/str.rs
rename : third_party/rust/nom/src/stream.rs => third_party/rust/nom-1.2.4/nom/src/stream.rs
rename : third_party/rust/nom/src/util.rs => third_party/rust/nom-1.2.4/nom/src/util.rs
rename : third_party/rust/nom/tests/arithmetic.rs => third_party/rust/nom-1.2.4/nom/tests/arithmetic.rs
rename : third_party/rust/nom/tests/arithmetic_ast.rs => third_party/rust/nom-1.2.4/nom/tests/arithmetic_ast.rs
rename : third_party/rust/nom/tests/cross_function_backtracking.rs => third_party/rust/nom-1.2.4/nom/tests/cross_function_backtracking.rs
rename : third_party/rust/nom/tests/ini.rs => third_party/rust/nom-1.2.4/nom/tests/ini.rs
rename : third_party/rust/nom/tests/ini_str.rs => third_party/rust/nom-1.2.4/nom/tests/ini_str.rs
rename : third_party/rust/nom/tests/issues.rs => third_party/rust/nom-1.2.4/nom/tests/issues.rs
rename : third_party/rust/nom/tests/mp4.rs => third_party/rust/nom-1.2.4/nom/tests/mp4.rs
rename : third_party/rust/nom/tests/omnom.rs => third_party/rust/nom-1.2.4/nom/tests/omnom.rs
rename : third_party/rust/nom/tests/test1.rs => third_party/rust/nom-1.2.4/nom/tests/test1.rs
extra : rebase_source : 8db59fcbf07bea1c4e8a5b9db70b7be8199cbe34
2018-06-12 11:03:01 -07:00
Emilio Cobos Álvarez
17a0e1807b
Bug 1468266: Revendor rust dependencies. r=me
...
MozReview-Commit-ID: 2MFU90eJr47
--HG--
rename : third_party/rust/debug_unreachable/.travis.yml => third_party/rust/new_debug_unreachable/.travis.yml
rename : third_party/rust/debug_unreachable/examples/simple.rs => third_party/rust/new_debug_unreachable/examples/simple.rs
rename : third_party/rust/debug_unreachable/tests/check.rs => third_party/rust/new_debug_unreachable/tests/check.rs
2018-06-11 16:45:09 -07:00
Henri Sivonen
e4805fd183
Bug 1466807 - Update encoding_rs to 0.8.0. r=emk
...
MozReview-Commit-ID: 30vmruy1kiL
--HG--
extra : rebase_source : 0e3e489fde0485919cd03529ba5d6d030863bfc1
2018-06-05 13:50:20 +03:00
arthur.iakab
fd0ee7c9b8
Merge inbound to mozilla-central a=merge
2018-06-06 00:58:30 +03:00
Emilio Cobos Álvarez
f4e58a818c
Bug 1466789: Bump cssparser again. r=me
...
To pick https://github.com/servo/rust-cssparser/pull/222 , whoops.
MozReview-Commit-ID: EPwQ5VPVj49
2018-06-05 17:19:10 +02:00
Emilio Cobos Álvarez
3dcb3f3abf
Bug 1466789: Bump cssparser. r=me
...
MozReview-Commit-ID: 39oowMlDBon
2018-06-05 11:51:45 +02:00
Emilio Cobos Álvarez
e2aa5b98a1
Bug 1466647: Update smallbitvec to v2.1.1. r=me
...
Actual code changes reviewed upstream in:
https://github.com/servo/smallbitvec/pull/12
MozReview-Commit-ID: 3vKVPMovBj
2018-06-04 21:42:55 +02:00
Bogdan Tara
3737701cfa
Merge mozilla-central to autoland. a=merge CLOSED TREE
2018-06-05 12:33:18 +03:00
Rob Wood
ee248fc775
Bug 1460741 - Add 'speedometer' benchmark to raptor for firefox; r=jmaher
...
MozReview-Commit-ID: 6eTJhUJv3y9
--HG--
extra : rebase_source : 5649ab3a3f228e9fc6966bad254b9ff4d8b2f1bd
2018-05-15 14:50:48 -04:00
Sofia Carrillo
0c81030974
Bug 1463834
- vendored hglib, updated to python-hglib r=davehunt
...
--HG--
rename : third_party/python/hglib/LICENSE => third_party/python/python-hglib/LICENSE
rename : third_party/python/hglib/hglib/__init__.py => third_party/python/python-hglib/hglib/__init__.py
rename : third_party/python/hglib/hglib/client.py => third_party/python/python-hglib/hglib/client.py
rename : third_party/python/hglib/hglib/context.py => third_party/python/python-hglib/hglib/context.py
rename : third_party/python/hglib/hglib/error.py => third_party/python/python-hglib/hglib/error.py
rename : third_party/python/hglib/hglib/merge.py => third_party/python/python-hglib/hglib/merge.py
rename : third_party/python/hglib/hglib/templates.py => third_party/python/python-hglib/hglib/templates.py
rename : third_party/python/hglib/hglib/util.py => third_party/python/python-hglib/hglib/util.py
rename : third_party/python/hglib/setup.py => third_party/python/python-hglib/setup.py
extra : rebase_source : 552d93c9e90c04171c8b627c8f4f4fa5ec506cc3
2018-05-31 18:04:54 -07:00
Dustin J. Mitchell
09632bab66
Bug 1459274 - update BUG_COPMONENT to represent reality; r=gps
...
MozReview-Commit-ID: 7J0DRtwDoRY
--HG--
extra : rebase_source : 15e6b667441cc11d72d067c926f4b6f598953b01
extra : source : 4d76259df5e263df8ed7338e24d1c752e12c9de6
2018-06-01 13:47:35 +00:00