skia-flutter-autoroll
dd368d59ef
Roll src/third_party/skia ba8752f37dab..634d15032d37 (2 commits) ( flutter/engine#13164 )
...
https://skia.googlesource.com/skia.git/+log/ba8752f37dab..634d15032d37
git log ba8752f37dab..634d15032d37 --date=short --no-merges --format='%ad %ae %s'
2019-10-16 lsalzman@mozilla.com fix SkTextBlob::getIntercepts regression no longer considering glyph vertical offset
2019-10-15 senorblanco@chromium.org Update Dawn backend to ToT. This is about 3 months of changes.
Created with:
gclient setdep -r src/third_party/skia@634d15032d37
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-15 22:54:21 -04:00
Chinmay Garde
f200ea0af9
Revert "Issue 13238: on iOS, force an orientation change when the current orientation is not allowed" ( flutter/engine#13160 )
...
This reverts commit 0790110fd28dd9ff72140ce15d3f6f877e2095e8.
2019-10-15 17:24:49 -07:00
skia-flutter-autoroll
c3f1fbdc31
Roll src/third_party/skia fb6a1abe4567..ba8752f37dab (8 commits) ( flutter/engine#13156 )
...
https://skia.googlesource.com/skia.git/+log/fb6a1abe4567..ba8752f37dab
git log fb6a1abe4567..ba8752f37dab --date=short --no-merges --format='%ad %ae %s'
2019-10-15 egdaniel@google.com Remove use of GrColorType as in param in SimpleTextureEffect.fp to just constructor param.
2019-10-15 jvanverth@google.com Remove some more MoltenVK support
2019-10-15 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms 8c5dee1e7fe2..8e28e18b5c9e (1 commits)
2019-10-15 csmartdalton@google.com Reland "ccpr: Unblacklist Qualcomm with msaa"
2019-10-15 egdaniel@google.com Remove some unneeded colortype format validation checks in ProxyProvider.
2019-10-15 csmartdalton@google.com Reland "Use GL_QCOM_TILED_RENDERING to explicitly discard stencil"
2019-10-15 egdaniel@google.com Plumb GrColorType through all ops/processors that sample textures.
2019-10-15 brianosman@google.com Add interactive demo to particle gallery
Created with:
gclient setdep -r src/third_party/skia@ba8752f37dab
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-15 19:07:07 -04:00
Chinmay Garde
55c710af55
Make the Dart isolate constructor private. ( flutter/engine#13153 )
...
Found this while attempting to document //flutter/runtime. The only reason this was public was because of the desire to use make_shared. I want to documentation changes to include no code changes. Hence this separate patch.
2019-10-15 15:06:57 -07:00
Josh
0790110fd2
Issue 13238: on iOS, force an orientation change when the current orientation is not allowed ( flutter/engine#12295 )
2019-10-15 14:36:59 -07:00
Chinmay Garde
9004744d6e
Allow embedders to specify a render task runner description. ( flutter/engine#13124 )
...
Embedders may use this to specify a thread whose event loop is managed by them
instead of the engine. In addition, specifying the same task runner for both
the platform and render task runners allows embedders to effectively perform
GPU rendering operations on the platform thread.
To affect this change, the following non breaking changes to the API have been
made:
* The `FlutterCustomTaskRunners` struct now has a new field `render_task_runner`
for the specification of a custom render task runner.
* The `FlutterTaskRunnerDescription` has a new field `identifier`. Embedders
must supply a unique identifier for each task runner they specify. In
addition, when describing multiple task runners that run their tasks on the
same thread, their identifiers must match.
* The embedder may need to process tasks during `FlutterEngineRun` and
`FlutterEngineShutdown`. However, the embedder doesn't have the Flutter engine
handle before `FlutterEngineRun` and is supposed to relinquish handle right
before `FlutterEngineShutdown`. Since the embedder needs the Flutter engine
handle to service tasks on other threads while these calls are underway,
there exist opportunities for deadlock. To work around this scenario, three
new calls have been added that allow more deliberate management of the Flutter
engine instance.
* `FlutterEngineRun` can be replaced with `FlutterEngineInitialize` and
`FlutterEngineRunInitialized`. The embedder can obtain a handle to the
engine after the first call but the engine will not post any tasks to custom
task runners specified by the embedder till the
`FlutterEngineRunInitialized` call. Embedders can guard the Flutter engine
handle behind a mutex for safe task runner interop.
* `FlutterEngineShutdown` can be preceded by the `FlutterEngineDeinitialize`
call. After this call the Flutter engine will no longer post tasks onto
embedder managed task runners. It is still embedder responsibility to
collect the Flutter engine handle via `FlutterEngineShutdown`.
* To maintain backwards compatibility with the old APIs, `FlutterEngineRun` is
now just a convenience for `FlutterEngineInitialize` and
`FlutterEngineRunInitilaized`. `FlutterEngineShutdown` now implicitly calls
`FlutterEngineDeinitialize` as well. This allows existing users who don't care
are custom task runner interop to keep using the old APIs.
* Adds complete test coverage for both old and new paths.
Fixes https://github.com/flutter/flutter/issues/42460
Prerequisite for https://github.com/flutter/flutter/issues/17579
2019-10-15 14:26:31 -07:00
skia-flutter-autoroll
d99a96e97f
Roll fuchsia/sdk/core/linux-amd64 from Jv4XM... to 5I4Iw... ( flutter/engine#13150 )
...
Roll fuchsia/sdk/core/linux-amd64 from Jv4XM... to 5I4Iw...
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter-engine
Please CC on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-10-15 17:19:16 -04:00
Ben Konyi
2eba3dd402
Roll src/third_party/dart fc933312f7..4131d3d7c4 (3 commits)
...
dart-lang/sdk@4131d3d7c4 [vm/ffi] Improve API docs
dart-lang/sdk@6ccd582cc3 [ dartfuzz ] Second half of DartFuzz refactor
dart-lang/sdk@d22f5122a1 Support Linux ARM on homebrew
2019-10-15 14:14:15 -07:00
Chinmay Garde
ba985165b5
Document //flutter/runtime/dart_vm ( flutter/engine#13144 )
2019-10-15 14:11:07 -07:00
Kaushik Iska
0bd17221f7
Revert "Enable/tweak web sdk source maps ( #13141 )" ( flutter/engine#13148 )
...
This reverts commit 71a51d73955d7caef22fcf1bc799d4593c05f7c7.
2019-10-15 13:37:52 -07:00
Jason Simmons
7f44a87a2f
Merge the Fuchsia frontend_server build script into the new flutter_frontend_server target ( flutter/engine#13145 )
2019-10-15 12:53:41 -07:00
Kaushik Iska
63e93b2f77
Add flutter_tester binary to the CIPD package ( flutter/engine#13143 )
...
- Also unifies f/s/platorm/fuchsia:fuchsia as the only target we build.
- This should contain all the packages we need to build fuchsia.
2019-10-15 12:26:13 -07:00
skia-flutter-autoroll
367931e589
Roll src/third_party/skia f22c57ddcc8c..fb6a1abe4567 (2 commits) ( flutter/engine#13142 )
...
https://skia.googlesource.com/skia.git/+log/f22c57ddcc8c..fb6a1abe4567
git log f22c57ddcc8c..fb6a1abe4567 --date=short --no-merges --format='%ad %ae %s'
2019-10-15 mtklein@google.com try un-teaching TSAN about Mac semaphores
2019-10-15 brianosman@google.com Add accessors to get/set SkParticleEffect fields
Created with:
gclient setdep -r src/third_party/skia@fb6a1abe4567
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-15 15:16:53 -04:00
vsmenon
71a51d7395
Enable/tweak web sdk source maps ( flutter/engine#13141 )
2019-10-15 11:29:10 -07:00
Ryan Macnak
1fb63e71f3
[frontend_server] Include bytecode generation in the training run. ( flutter/engine#13126 )
2019-10-15 10:40:11 -07:00
Andy Weiss
9b9dd7d20d
Support empty strings and vectors in standard codec ( flutter/engine#12974 )
...
* Support empty strings and vectors in standard codec
Fixes #41993
Currently an empty string or vector will call through to WriteBytes
which asserts that the number of bytes it is being asked to write is
strictly positive. Instead we should not call WriteBytes if the length
is zero.
Similarly, when we read, we don't need to call out if the length is
zero.
* fix typo in test name
* remove unnecessary length check in ReadValue for List
* we also don't need this check before calling read as memcpy can handle size 0
2019-10-15 08:35:50 -07:00
skia-flutter-autoroll
e4ce3bc08d
Roll src/third_party/skia 55f9cba6e2e7..f22c57ddcc8c (1 commits) ( flutter/engine#13136 )
...
https://skia.googlesource.com/skia.git/+log/55f9cba6e2e7..f22c57ddcc8c
git log 55f9cba6e2e7..f22c57ddcc8c --date=short --no-merges --format='%ad %ae %s'
2019-10-15 robertphillips@google.com Centralize GrSamplerState key creation
Created with:
gclient setdep -r src/third_party/skia@f22c57ddcc8c
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-15 09:41:43 -04:00
skia-flutter-autoroll
01fa622036
Roll fuchsia/sdk/core/linux-amd64 from xRgq0... to Jv4XM... ( flutter/engine#13135 )
...
Roll fuchsia/sdk/core/linux-amd64 from xRgq0... to Jv4XM...
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter-engine
Please CC on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-10-15 04:23:50 -04:00
skia-flutter-autoroll
e9c706f61a
Roll src/third_party/skia 858cf233ef71..55f9cba6e2e7 (3 commits) ( flutter/engine#13133 )
...
https://skia.googlesource.com/skia.git/+log/858cf233ef71..55f9cba6e2e7
git log 858cf233ef71..55f9cba6e2e7 --date=short --no-merges --format='%ad %ae %s'
2019-10-15 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 fede5cb664d9..2d0e5b554d4f (4 commits)
2019-10-15 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 1c462ebc904c..a27dfcf868bf (3 commits)
2019-10-15 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src e034419fbc6a..083c52f74ac2 (362 commits)
Created with:
gclient setdep -r src/third_party/skia@55f9cba6e2e7
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-15 02:57:51 -04:00
skia-flutter-autoroll
e88c7e2b64
Roll src/third_party/skia 7d7aaf46aeb4..858cf233ef71 (1 commits) ( flutter/engine#13131 )
...
https://skia.googlesource.com/skia.git/+log/7d7aaf46aeb4..858cf233ef71
git log 7d7aaf46aeb4..858cf233ef71 --date=short --no-merges --format='%ad %ae %s'
2019-10-14 csmartdalton@google.com Call setNeedsStencil() when clearing stencil
Created with:
gclient setdep -r src/third_party/skia@858cf233ef71
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-14 23:06:58 -04:00
Erick (CptBlackPixel)
3cc363909a
Adding deviceId to KeyEventChannel enconding method ( flutter/engine#12958 )
...
This Pull Request simple adds the deviceId property to the encoding method, I am preparing a next PR on the flutter repository that reads this info and add a property to RawKeyEventDataAndroid on the Flutter side.
This is necessary so we can support multiple gamepads on Android, in order to be possible to make a local multiplayer game with Flutter.
2019-10-14 17:47:15 -07:00
chunhtai
b2f97ff78b
Enable all engine test on windows ( flutter/engine#12814 )
2019-10-14 16:28:52 -07:00
Devon Carew
642f3cf1a2
add the dart:__interceptors library to the dart sdk ( flutter/engine#13125 )
2019-10-14 16:20:25 -07:00
skia-flutter-autoroll
d7ca55048a
Roll src/third_party/skia a7e1b45d9c28..7d7aaf46aeb4 (19 commits) ( flutter/engine#13127 )
...
https://skia.googlesource.com/skia.git/+log/a7e1b45d9c28..7d7aaf46aeb4
git log a7e1b45d9c28..7d7aaf46aeb4 --date=short --no-merges --format='%ad %ae %s'
2019-10-14 robertphillips@google.com Slim down GrFragmentProcessor::TextureSampler and GrPrimitiveProcessor::TextureSampler
2019-10-14 jcgregorio@google.com Fix usage of depot_tools in containers.
2019-10-14 jvanverth@google.com Reland "Minimal iOS app: Perform present subsequent to flush"
2019-10-14 benjaminwagner@google.com [infra] Retry failed pushes in Android flavor
2019-10-14 mtklein@google.com insist SkPngEncoder's input is initialized
2019-10-14 senorblanco@chromium.org Dawn backend: update to Skia API changes.
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms e9158fd9e492..8c5dee1e7fe2 (4 commits)
2019-10-14 jvanverth@google.com Revert "Minimal iOS app: Perform present subsequent to flush"
2019-10-14 csmartdalton@google.com Allow fullscreen clears when generating blurs
2019-10-14 jvanverth@google.com Remove fake SDK #defines for Metal backend.
2019-10-14 jvanverth@google.com Minimal iOS app: Perform present subsequent to flush
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms ed9daeb11a98..e9158fd9e492 (1 commits)
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms a52db47aa53f..ed9daeb11a98 (1 commits)
2019-10-14 robertphillips@google.com Reduce usage of GrProgramDesc::KeyHeader
2019-10-14 egdaniel@google.com Remove GrPixelConfigIsAlphaOnly call and transition calls to it.
2019-10-14 robertphillips@google.com Plumb GrPrimitiveType down to GrProgramDesc::Build
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 67486ec24551..fede5cb664d9 (12 commits)
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src 92809357d851..e034419fbc6a (981 commits)
2019-10-14 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader ae022faf53b9..1c462ebc904c (1 commits)
Created with:
gclient setdep -r src/third_party/skia@7d7aaf46aeb4
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-14 19:15:27 -04:00
Nurhan Turgut
a4ebe04aa2
refactoring chrome_installer ( flutter/engine#13122 )
...
* refactoring before implementing the firefox installer. This PR carries utilities to a common place. Renames the lock file with a generic name.
* Fixed README file for browser_lock
* addressing PR comments: removing unimplemented firefox methods.
2019-10-14 14:51:08 -07:00
Michael Klimushyn
4b9fc4c1a5
Fire PlatformViewController FlutterView callbacks ( flutter/engine#13015 )
...
Fixes a bug where `PlatformViewController` was not being notified of `FlutterView` attachment changes.
2019-10-14 14:03:25 -07:00
gaaclarke
729a871326
iOS Platform View: Fixed overrelease of the observer. ( flutter/engine#13093 )
2019-10-14 13:49:02 -07:00
Ferhat
a3654ec08f
[web] Add basic color per vertex drawVertices API support ( flutter/engine#13066 )
...
* Implement basic drawVertices for BlendMode.srcOver and hairline rendering
* Implement maxDiffRate parameter for screenshot tests
2019-10-14 13:16:05 -07:00
Mouad Debbar
918a61752e
Support keyboard types on mobile browsers ( flutter/engine#13044 )
2019-10-14 13:10:01 -07:00
liyuqian
892f852039
Change IO thread shader cache strategy ( flutter/engine#13121 )
...
So it's the same with the GPU thread.
Otherwise, some shaders may be cached in binary on the IO thread, and we will lose them when we do the SkSL precompile.
For b/140174804
2019-10-14 13:05:05 -07:00
skia-flutter-autoroll
4aa3ee0c26
Roll fuchsia/sdk/core/linux-amd64 from _GTls... to xRgq0... ( flutter/engine#13115 )
...
Roll fuchsia/sdk/core/linux-amd64 from _GTls... to xRgq0...
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter-engine
Please CC on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-10-14 15:29:08 -04:00
skia-flutter-autoroll
34e38a2336
Roll src/third_party/skia 3838fe3c82b4..a7e1b45d9c28 (1 commits) ( flutter/engine#13117 )
...
https://skia.googlesource.com/skia.git/+log/3838fe3c82b4..a7e1b45d9c28
git log 3838fe3c82b4..a7e1b45d9c28 --date=short --no-merges --format='%ad %ae %s'
2019-10-13 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update SKP version
Created with:
gclient setdep -r src/third_party/skia@a7e1b45d9c28
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC csmartdalton@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=csmartdalton@google.com
2019-10-14 15:26:15 -04:00
Jason Simmons
1859de2ff0
Integrate more SkParagraph builder patches ( flutter/engine#13094 )
...
* ParagraphBuilderSkia::AddPlaceholder implementation
* StrutStyle height override
2019-10-14 11:17:11 -07:00
skia-flutter-autoroll
80a5b12c18
Roll fuchsia/sdk/core/linux-amd64 from lJPDX... to _GTls... ( flutter/engine#13113 )
...
Roll fuchsia/sdk/core/linux-amd64 from lJPDX... to _GTls...
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter-engine
Please CC on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-10-12 15:53:11 -04:00
skia-flutter-autoroll
65b794f780
Roll fuchsia/sdk/core/linux-amd64 from LsxeL... to lJPDX... ( flutter/engine#13109 )
...
Roll fuchsia/sdk/core/linux-amd64 from LsxeL... to lJPDX...
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/fuchsia-linux-sdk-flutter-engine
Please CC on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-10-12 03:07:04 -04:00
skia-flutter-autoroll
568777c5b3
Roll src/third_party/skia 8c6c8b0c42e2..3838fe3c82b4 (3 commits) ( flutter/engine#13105 )
...
https://skia.googlesource.com/skia.git/+log/8c6c8b0c42e2..3838fe3c82b4
git log 8c6c8b0c42e2..3838fe3c82b4 --date=short --no-merges --format='%ad %ae %s'
2019-10-11 herb@google.com Use SkDrawableGlyphBuffer for bitmap rendering
2019-10-11 rsesek@chromium.org Switch SkSemaphore to use dispatch_semaphore_t on Mac.
2019-10-11 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
Created with:
gclient setdep -r src/third_party/skia@3838fe3c82b4
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC kjlubick@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=kjlubick@google.com
2019-10-11 21:42:08 -04:00
liyuqian
a97608de26
Analyze framework Dart code in presubmit tests ( flutter/engine#13037 )
...
This fixes https://github.com/flutter/flutter/issues/38848
2019-10-11 17:28:24 -07:00
Kaushik Iska
04a6d3e4e0
[dart_aot_runner] Complete the port of dart_aot_runner ( flutter/engine#13103 )
...
* [dart_aot_runner] Complete the port of dart_aot_runner
- also adds the previously missing profiler symbols for dart_jit_runner
- CIPD package will contain both the JIT and AOT dart runners
* specify the inputs
2019-10-11 17:24:54 -07:00
Matt Carroll
d632e81dd4
Move initialization into FlutterEngine ( flutter/engine#12806 )
2019-10-11 16:15:55 -07:00
Ferhat
34a906543c
Update felt README ( flutter/engine#13097 )
...
* Update felt README
* Removed -t since it is removed in #13088
2019-10-11 16:08:03 -07:00
Kaushik Iska
0a1600a6d1
[dart_aot_runner] Generate vmservice aotsnapshots ( flutter/engine#13101 )
2019-10-11 16:03:30 -07:00
Dan Field
9dc1042e7a
ColorFilter matrix docs ( flutter/engine#13100 )
2019-10-11 16:01:16 -07:00
Dan Field
693c13dcf7
cleanup gen_package.py ( flutter/engine#13089 )
2019-10-11 16:00:45 -07:00
Kaushik Iska
363a57f873
[dart_aot_runner] Use the host_toolchain to build kernels ( flutter/engine#13096 )
2019-10-11 15:36:13 -07:00
Nurhan Turgut
9a6853f17f
do not wrap font family name ( flutter/engine#12801 )
...
* do not wrap font family name in webkit otherwise icons not show on safari 13 (both IOS and desktop)
* Changing the font loading to work in all browsers.
* Documentation, renaming, gramatical/spelling error related PR comments addressed. Regexp will be addressed in the next commit.
* Changing regular expressions to look simpler. Adding more unit tests.
2019-10-11 15:12:28 -07:00
skia-flutter-autoroll
5390177e1b
Roll src/third_party/skia df640e6d14a5..8c6c8b0c42e2 (12 commits) ( flutter/engine#13098 )
...
https://skia.googlesource.com/skia.git/+log/df640e6d14a5..8c6c8b0c42e2
git log df640e6d14a5..8c6c8b0c42e2 --date=short --no-merges --format='%ad %ae %s'
2019-10-11 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-10-11 halcanary@google.com docs/fiddle: add "incomplete" fiddle.
2019-10-11 halcanary@google.com SkPDF/tests: add regression test for crbug/494913
2019-10-11 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-10-11 egdaniel@google.com Remove GrPixelConfig version of CompressedDataSize.
2019-10-11 halcanary@google.com Docs: Update docs to point at named fiddles
2019-10-11 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-10-11 herb@google.com Introduce SkGlyphDrawableBuffer
2019-10-11 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-10-11 borenet@google.com [infra] Fix presubmit by pinning tools/build
2019-10-11 egdaniel@google.com Fix GL RGB format bytes per pixel.
2019-10-11 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 5d9c4ee328bc..67486ec24551 (18 commits)
Created with:
gclient setdep -r src/third_party/skia@8c6c8b0c42e2
If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skia-flutter-autoroll
Please CC kjlubick@google.com on the revert to ensure that a human
is aware of the problem.
To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
Bug: None
TBR=kjlubick@google.com
2019-10-11 17:28:34 -04:00
liyuqian
f24924fa9b
Remove persistent cache unittest timeout ( flutter/engine#13091 )
...
This fixes https://github.com/flutter/flutter/issues/42465
2019-10-11 14:24:12 -07:00
Matt Carroll
5e17ccdf32
Added FlutterActivity and FlutterFragment hook to cleanUpFlutterEngine() as symmetry for configureFlutterEngine(). ( #41943 ) ( flutter/engine#12987 )
2019-10-11 13:52:21 -07:00
Yegor
20556a05cb
use rest args for specifying test targets ( flutter/engine#13088 )
2019-10-11 13:44:55 -07:00
Yegor
16e74ede52
Snapshot the felt tool for faster start-up ( flutter/engine#13090 )
2019-10-11 13:44:06 -07:00