2292 Commits

Author SHA1 Message Date
skia-flutter-autoroll
dfd281bcae
Roll src/third_party/skia 0f15d7373bf1..e8a2c8053daa (8 commits) (#11418)
https://skia.googlesource.com/skia.git/+log/0f15d7373bf1..e8a2c8053daa

git log 0f15d7373bf1..e8a2c8053daa --date=short --no-merges --format='%ad %ae %s'
2019-08-23 senorblanco@chromium.org Dawn: update to recent GrGpu/CopySurface changes.
2019-08-23 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms d7c7dd8b955e..ce4270691346 (1 commits)
2019-08-23 egdaniel@google.com Rename GrContextOption fReduceOpListSplitting to fReduceOpsTaskSplitting.
2019-08-23 mtklein@google.com track SkNoPixelsDevice's origin
2019-08-23 reed@google.com remove redundant rect methods
2019-08-23 senorblanco@chromium.org Dawn: implement a ring buffer for uniform uploads.
2019-08-23 csmartdalton@google.com Don't pass around renderTargetContexts from onFlush callbacks
2019-08-23 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms 47820316fcec..d7c7dd8b955e (1 commits)

Created with:
  gclient setdep -r src/third_party/skia@e8a2c8053daa

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-23 17:50:56 -04:00
Yegor
8ebbf02906
Shrink cirrus docker image: reduce RUN count, apt-get clean (#11416)
* Shrink cirrus docker image: reduce RUN count, apt-get clean

* collapse everything into one RUN
2019-08-23 14:12:27 -07:00
Ben Konyi
36b5b19367 Roll src/third_party/dart 06d3769ac6..2e4c89aa73 (19 commits)
dart-lang/sdk@2e4c89aa73 Flow analysis: fix handling of `for(;;)` loops.
dart-lang/sdk@05f411dbf4 Sort declarations in flow_analysis_visitor.dart.
dart-lang/sdk@118831ec53 Defend against null tokens when constructing model completion ranking query
dart-lang/sdk@62ec392768 Upgrade to tflite_native@0.2.2
dart-lang/sdk@68e805f9f6 [vm/cocurrency] Add simple spawn function test and test with/without isolate groups
dart-lang/sdk@3c54aeae6b [vm/compiler] Ensure proper release/aquire fences are used when turning ICData to be megamorphic.
dart-lang/sdk@9a854c111a Resolve uses of super within extensions to dynamic to prevent an exception and remove follow-on diagnostics
dart-lang/sdk@d978c83dac [dart:io]Annotate SecureSocket.secure supportedProtocols with @Since
dart-lang/sdk@00610ec765 [cfe] Return inferred type from inference visitor
dart-lang/sdk@16a4ee0eb5 [cfe] Use fileOffset instead of Token in createArguments
dart-lang/sdk@8c9d6c1c68 [cfe] Use ObjectAccessTarget as the result for object access resolution
dart-lang/sdk@5fb29b6a8d Flow analysis: allow sets of referenced variables to be any iterable.
dart-lang/sdk@1f9dd21940 Flow analysis: create the VariableModel data structure.
dart-lang/sdk@a7fa63789a [cfe/ffi] Only catch FFI transformation exceptions
dart-lang/sdk@3547b2a7d7 [dart:io] Document supportedProtocols argument of RawSecureSocket.secure
dart-lang/sdk@671fdba18a [dart:io] Pass supportedProtocols through from SecureSocket.secure
dart-lang/sdk@9c707d7639 [CFE] Add lint that checks fastas own dependencies
dart-lang/sdk@74e09abc6e [CFE] Remove/move file that wasn't needed by frontend; cleanup pubspec.yaml a bit
dart-lang/sdk@bd681ea660 [CFE] Move testing out of lib/src/fasta
2019-08-23 13:12:57 -07:00
skia-flutter-autoroll
72283b6419
Roll src/third_party/skia f17d1c952987..0f15d7373bf1 (6 commits) (#11415)
https://skia.googlesource.com/skia.git/+log/f17d1c952987..0f15d7373bf1

git log f17d1c952987..0f15d7373bf1 --date=short --no-merges --format='%ad %ae %s'
2019-08-23 reed@google.com optimize verts
2019-08-23 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-23 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update Go deps
2019-08-23 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 91dc5da80684..17f26865c8cc (11 commits)
2019-08-23 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src 0ef8680cf8f1..edb7520e0ea4 (458 commits)
2019-08-23 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 23742c0958dd..115cfe7a1b32 (5 commits)

Created with:
  gclient setdep -r src/third_party/skia@0f15d7373bf1

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-23 13:25:11 -04:00
Kaushik Iska
632a37b5d5
Make message loop task entry containers thread safe (#11367)
The core underlying issue is that vector push_back could re-allocate and cause us to segfault. I have switched the backing queues to a map per @jason-simmons suggestion in flutter/flutter#38778.

I've also added a test to capture the aforementioned bug. I've run internal tests several times to validate that this is fixed.

General threading note for this class is that only the following operations take a write lock on the meta mutex:

1. Create
2. Dispose

The rest of the operations take read lock on the meta mutex and acquire finer grained locks for the duration of the operation. We can not grab read lock for the entire duration of NotifyObservers for example because observer can in-turn create other queues -- Which we should not block.

Additional changes:

1. Make as many methods as possible const. Unlocked methods are all const.
2. Migrate all the queue members to a struct, and have a map.
3. Get rid of the un-used Swap functionality.
2019-08-22 23:27:25 -07:00
Ben Konyi
975a8aa575 Roll src/third_party/dart 022585cfe2..06d3769ac6 (12 commits)
dart-lang/sdk@06d3769ac6 [vm/bytecode] Correctly resolve breakpoints in inner functions.
dart-lang/sdk@8b2deca4fa [vm/fuzzer] Add more ffi types
dart-lang/sdk@d5a9a732a5 [vm/bytecode] Register closure functions in the object store's list of closures
dart-lang/sdk@527cf27633 Smarter error reporting in static error tests.
dart-lang/sdk@96a3aa6378 [vm/fuzzer] Extend special fuzzing values
dart-lang/sdk@5e428ed638 [vm/bytecode] Fixes for expression evaluation
dart-lang/sdk@fb90729cf7 Fix isMoreSpecific() for extensions to check that extensions declared in the platform.
dart-lang/sdk@d165492976 Clean up a test
dart-lang/sdk@fdbc2920c7 [vm, bytecode] Use the global lookup cache for dynamic calls.
dart-lang/sdk@fe9814195b Produce diagnostics when a reference to a static member of an extension cannot be resolved
dart-lang/sdk@e7f82cdb7c Support for FunctionTypedFormalParameter in GenericFunctionType.
dart-lang/sdk@3617c8d704 [vm/bytecode] Add missing DebugCheck to local function declaration
2019-08-22 22:04:17 -07:00
skia-flutter-autoroll
735d30c774
Roll src/third_party/skia 941d0a365045..f17d1c952987 (1 commits) (#11393)
https://skia.googlesource.com/skia.git/+log/941d0a365045..f17d1c952987

git log 941d0a365045..f17d1c952987 --date=short --no-merges --format='%ad %ae %s'
2019-08-23 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).

Created with:
  gclient setdep -r src/third_party/skia@f17d1c952987

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-22 23:56:00 -04:00
Chinmay Garde
fcc158fd3f
Wire up software rendering in the test compositor. (#11392) 2019-08-22 20:27:34 -07:00
Ben Konyi
698f7f31d7 Roll src/third_party/dart 88c0c11612..022585cfe2 (14 commits)
dart-lang/sdk@022585cfe2 [vm/vmservice] Ensure same name used for all flow events that share same Flow.id.
dart-lang/sdk@2b31e41564 Remove 'docComplete' and 'docSummary' from AvailableSuggestion.
dart-lang/sdk@5935b916e3 Rename several error codes and improve some messages
dart-lang/sdk@a35f4ec412 [vm/fuzzer] Add forEach loops
dart-lang/sdk@f632df018a [vm/fuzzer] Add interesting fuzzing values
dart-lang/sdk@223724fa76 [vm/bytecode] Lookup source and line starts for bytecode scripts specifying uri only.
dart-lang/sdk@0176526799 [vm, compiler] Always clone MegamorphicCaches before accessing on a background compiler thread.
dart-lang/sdk@782e018630 [vm/fuzzer] change file attribute of fuzzing files
dart-lang/sdk@2da2ab7218 [vm/mirrors] ClassMirror stop getting methods from mixin class
dart-lang/sdk@a65615964a Log computed unit elements.
dart-lang/sdk@83458092ef Migration: add support for inferred types that are generic function types.
dart-lang/sdk@eee596363b Migration: decouple DecoratedType from PotentialModification.
dart-lang/sdk@1fcaa26004 [vm/benchmarks] Add sync/sync*/async/async* call benchmarks
dart-lang/sdk@3f0f66cabc [DDC,bazel] Allow no digest when not in worker mode
2019-08-22 19:03:48 -07:00
skia-flutter-autoroll
47b2d9b3d9
Roll src/third_party/skia 2a5954140b49..941d0a365045 (6 commits) (#11389)
https://skia.googlesource.com/skia.git/+log/2a5954140b49..941d0a365045

git log 2a5954140b49..941d0a365045 --date=short --no-merges --format='%ad %ae %s'
2019-08-22 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-22 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-22 herb@google.com Revert "Don't send strike with no pending glyphs"
2019-08-22 egdaniel@google.com Reland "Merge GrOpList and GrRTOpList and rename to GrOpsTask."
2019-08-22 egdaniel@google.com Revert "Merge GrOpList and GrRTOpList and rename to GrOpsTask."
2019-08-22 fmalita@chromium.org Revert "[canvaskit] Optimize CK builds for size"

Created with:
  gclient setdep -r src/third_party/skia@941d0a365045

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-22 20:09:24 -04:00
Yegor
fad38e252f
sync web engine; run web engine tests (#11031)
sync web engine; run web engine tests
2019-08-22 16:38:03 -07:00
Gary Qian
a1fe6a6871
Reland "Track detailed LibTxt metrics with LineMetrics(#10127)" (#11064) 2019-08-22 16:00:45 -07:00
skia-flutter-autoroll
78ac65320b
Roll src/third_party/skia 068af9e416cb..2a5954140b49 (8 commits) (#11383)
https://skia.googlesource.com/skia.git/+log/068af9e416cb..2a5954140b49

git log 068af9e416cb..2a5954140b49 --date=short --no-merges --format='%ad %ae %s'
2019-08-22 egdaniel@google.com Merge GrOpList and GrRTOpList and rename to GrOpsTask.
2019-08-22 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-22 fmalita@chromium.org [svgcanvas] Named colors support
2019-08-22 egdaniel@google.com Delete unused GrTextureOpList.
2019-08-22 fmalita@chromium.org [canvaskit] Optimize CK builds for size
2019-08-22 csmartdalton@google.com Don't perform dst reads on MSAA targets that require manual resolve
2019-08-22 scroggo@google.com Remove SK_LEGACY_HEIF_API
2019-08-22 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).

Created with:
  gclient setdep -r src/third_party/skia@2a5954140b49

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-22 16:23:01 -04:00
Ben Konyi
9e9425eae2 Roll src/third_party/dart 9fda4c1101..88c0c11612 (12 commits)
dart-lang/sdk@88c0c11612 Remove constant-update-2018 flag from tests.
dart-lang/sdk@e4c552fb48 [CFE] Add test that runs analyzer on CFE source with lints
dart-lang/sdk@95c9f732de Expire spread and control-flow collection flags.
dart-lang/sdk@a7a1860283 [infra] Remove non-essential status expectations from pkg status file
dart-lang/sdk@5428119bee [infra] Remove non-essential test expectations from analyzer status files
dart-lang/sdk@9e676aa228 [cfe+dart2js] Add error testing to constant_test
dart-lang/sdk@46d5556e56 [co19] Roll co19 to 52daae49d7bff80039ff1eea36a24e98c2b9a837
dart-lang/sdk@976877974b [bazel] Don't require empty linked inputs for incremental mode
dart-lang/sdk@ceaf00ebe6 [co19] Document how co19 rolls are done.
dart-lang/sdk@51f6cab413 [cfe] Parse nnbd modifiers in kernel type substitution tests
dart-lang/sdk@5dcec3c93e [CFE] Disallow exports internally
dart-lang/sdk@40589f80aa [CFE] Fourth batch of fixes for requiring explicit types
2019-08-22 10:07:42 -07:00
skia-flutter-autoroll
5d32ff6600
Roll src/third_party/skia c071fc92cd3d..068af9e416cb (3 commits) (#11379)
https://skia.googlesource.com/skia.git/+log/c071fc92cd3d..068af9e416cb

git log c071fc92cd3d..068af9e416cb --date=short --no-merges --format='%ad %ae %s'
2019-08-22 brianosman@google.com Revert "Temporary Lua hook to measure impact of conservative convexity"
2019-08-22 brianosman@google.com Enable SkSL interpreter in CanvasKit to get particles working again
2019-08-22 bsalomon@google.com limit SK_API exposure on GrTexture

Created with:
  gclient setdep -r src/third_party/skia@068af9e416cb

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-22 12:37:09 -04:00
skia-flutter-autoroll
17f1b500f9
Roll src/third_party/skia 42c6af9182d2..c071fc92cd3d (6 commits) (#11372)
https://skia.googlesource.com/skia.git/+log/42c6af9182d2..c071fc92cd3d

git log 42c6af9182d2..c071fc92cd3d --date=short --no-merges --format='%ad %ae %s'
2019-08-22 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update Go deps
2019-08-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 6d653c02dd24..91dc5da80684 (8 commits)
2019-08-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src 85a9084804fd..0ef8680cf8f1 (479 commits)
2019-08-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 92eb0415d0b1..23742c0958dd (3 commits)
2019-08-22 herb@google.com Only send font metrics if not already sent.
2019-08-22 bsalomon@google.com SK_API in src/gpu cleanup

Created with:
  gclient setdep -r src/third_party/skia@c071fc92cd3d

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-22 02:23:53 -04:00
Siva
fc27f80a12
1. Update license files to account for the new Dart License file (#11364)
2. Roll src/third_party/dart 027071318f..1279641cdd (65 commits)

dart-lang/sdk@1279641cdd Migration: integrate for-each loops with flow analysis.
dart-lang/sdk@51cd16ecf0 Flow analysis: support for and for-in elements in collections.
dart-lang/sdk@47d2794a71 Implement methods that were missing from ExtensionElementForLink
dart-lang/sdk@a17959b5a0 Log the context in which analysis work is done.
dart-lang/sdk@9198813a55 Revert "Scaffolding for dart:wasm"
dart-lang/sdk@4bf5a72ca0 Flow analysis: support functions whose bodies are expressions.
dart-lang/sdk@b569bf048e Migration: node builder support for new-style typedefs.
dart-lang/sdk@f39a3f188e Scaffolding for dart:wasm
dart-lang/sdk@3729b961bb Use SearchedFiles when searching subtypes for 'analysis.implemented'.
dart-lang/sdk@5d816cbc5d [vm/concurrency] Add FLAG_enable_isolate_groups, still defaulting to true
dart-lang/sdk@480e481708 Throw HttpException instead of String in http impl
dart-lang/sdk@9aa48c2e91 Build local elements in initializers of typed constants.
dart-lang/sdk@af2e729fca Record request / response statistics.
dart-lang/sdk@7bc9515ac2 Fix CompilationUnitMember doc comment. Fixes #27170
dart-lang/sdk@ef39492fd6 Fix support for annotations on extensions
dart-lang/sdk@64efe44e5e Formal parameters of FunctionTypeAlias should be created in @function reference.
dart-lang/sdk@0323fb97bc Migration: support Function() syntax with type formal parameters.
dart-lang/sdk@19533094eb Stop deleting the terminating period on diagnostic messages
dart-lang/sdk@d252efaa49 Migration: node builder support for old-style typedefs
dart-lang/sdk@468800f9d7 Refine the type of FunctionTypeAlias.declaredElement.
dart-lang/sdk@c44c2f1b68 Update LSP readme with instructions for shipped SDKs instead of source
dart-lang/sdk@f2e04caeaf [CFE] Fix CQ race condition with lint status
dart-lang/sdk@bc16959fc7 Reland "[vm/ffi] Dispatch native callbacks through trampolines if we can't ensure callbacks will always be executable."
dart-lang/sdk@48edb2362a [CFE] Update lint for explicit types to also look at fields and top level fields
dart-lang/sdk@5905fe41a9 [CFE] Explicit return types and overrides in constant evaluator
dart-lang/sdk@698c5b1a36 [CFE] Add 'double import' lint
dart-lang/sdk@b625152523 [infra] Remove non-essential test expectations from kernel status files
dart-lang/sdk@c37b5b2edf [vm/ffi] Status: skip test including callbacks on DBC
dart-lang/sdk@095d1c2835 [infra] Clean up general status files
dart-lang/sdk@7f9f4ad774 [cfe] Delete legacy tests
dart-lang/sdk@91c8cf7167 [cfe] Support per folder experimental flags in testcases
dart-lang/sdk@670d40d808 [vm/ffi] regression test for 37511
dart-lang/sdk@c651102793 Remove third_party licenses from LICENSE
dart-lang/sdk@5e5313c8d6 [vm/bytecode] Keep unreachable code for code coverage
dart-lang/sdk@922c2bfbb0 [vm/bytecode] Include source info and asserts into platform with bytecode
dart-lang/sdk@457c4349d0 [ package:vm_service ] Prep for 1.1.1 release
dart-lang/sdk@861cae4853 [vm/fuzzer] Disable stacktrace option on FFI runs
dart-lang/sdk@f50a566476 Enclose local variables in default values of optional formal parameters.
dart-lang/sdk@239a6d1449 [vm, bytecode] Annotate super calls and clear lookup caches on reload.
dart-lang/sdk@ee38a308da thread feature set into linter debug util
dart-lang/sdk@afc259ea6b [dart2js] Add 'any' to DartType.
dart-lang/sdk@1d9b6427ef Prepare to publish analyzer version 0.38.1.
dart-lang/sdk@a5007cde35 Clean up an obsolete TODO comment
dart-lang/sdk@293eee940b [dart2js] Revert to old Closure.toString() implementation for old RTI.
dart-lang/sdk@f842b03de5 linter visit hooks for extensions
dart-lang/sdk@3fe9ba152f Migration: implement Variables._decorateDirectSupertypes.
dart-lang/sdk@d67eaefe77 Add more tests of the visibility of extension members
dart-lang/sdk@72923471c4 strict-inference failures for untyped parameters:
dart-lang/sdk@bfc7f8c4b5 Fix crash parsing invalid constructor initializer
dart-lang/sdk@3e69627752 Fix type argument parsing crash
dart-lang/sdk@e2777454cc Fix dartfmt bug
dart-lang/sdk@d95bb2d74f [ package:vm_service ] Analyze package:vm_service on bots
dart-lang/sdk@38ca72a3e7 [dart2js] TrivialRuntimeTypesNeed should not say non-generic classes need type arguments.
dart-lang/sdk@04bd34ed87 Issue 37916. The name of ConstructorName cannot be shadowed.
dart-lang/sdk@3865187956 [nnbd_migration] already-migrated types with 1:1 type args & params.
dart-lang/sdk@e2fee9c0dd [pkg:vm_service] fix an issue serializing list args
dart-lang/sdk@37183f8865 [observatory] Remove stale asserts from heap snapshot processing.
dart-lang/sdk@396613d884 [pkg:vm_service] be more lenient towards nulls json fields in the java library
dart-lang/sdk@0fee296130 [vm] Add wasmer to third_party, and support building rust libraries
dart-lang/sdk@663a8630e6 Revert "[vm/ffi] Dispatch native callbacks through trampolines if we can't ensure callbacks will always be executable."
dart-lang/sdk@e8c82c6784 [vm/ffi] Suppress irrelevant lint failures in FFI sources.
dart-lang/sdk@bab592fd28 [vm/ffi] Dispatch native callbacks through trampolines if we can't ensure callbacks will always be executable.
dart-lang/sdk@e34c4319dc Migration: property decorate implicit bottom types.
dart-lang/sdk@c6e2497569 Migration: capture more exception information and make it easier to examine stack traces.
dart-lang/sdk@fc16f8aa58 Apply flutter-engine patch to dump dart_package_config_tag version
dart-lang/sdk@1e79aa6b7e Update LSP readme to link to dart-vim instructions
2019-08-21 21:02:35 -07:00
skia-flutter-autoroll
3c695b131c
Roll src/third_party/skia 9e081d164c81..42c6af9182d2 (3 commits) (#11366)
https://skia.googlesource.com/skia.git/+log/9e081d164c81..42c6af9182d2

git log 9e081d164c81..42c6af9182d2 --date=short --no-merges --format='%ad %ae %s'
2019-08-21 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-21 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-21 fmalita@chromium.org [svgcanvas] Add flag to suppress newlines and tabs in XML

Created with:
  gclient setdep -r src/third_party/skia@42c6af9182d2

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-21 22:03:13 -04:00
skia-flutter-autoroll
3606f7bc2d
Roll src/third_party/skia 80bff5b3a2d7..9e081d164c81 (16 commits) (#11354)
https://skia.googlesource.com/skia.git/+log/80bff5b3a2d7..9e081d164c81

git log 80bff5b3a2d7..9e081d164c81 --date=short --no-merges --format='%ad %ae %s'
2019-08-21 herb@google.com Don't send strike with no pending glyphs
2019-08-21 jlavrova@google.com Bug fixes for Flutter
2019-08-21 brianosman@google.com SkRuntimeShaderMaker -> SkRuntimeShaderFactory
2019-08-21 egdaniel@google.com Move CopyOps to CopyRenderTask.
2019-08-21 csmartdalton@google.com Mark mipmaps dirty from makeClosed() rather than opList constructors
2019-08-21 robertphillips@google.com Remove GrPendingIOResource
2019-08-21 csmartdalton@google.com Convert GrManyDependentsMipMappedTest to a mock gpu test
2019-08-21 fmalita@chromium.org [svgcanvas] Don't emit default fill and stroke attributes
2019-08-21 bsalomon@google.com Fix sk_sp<> for incomplete type build issue
2019-08-21 bungeman@google.com Simplify gdi handle use with gdi fonts.
2019-08-21 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms 12b0343d8960..47820316fcec (1 commits)
2019-08-21 bsalomon@google.com GrSurfaceContext not ref counted.
2019-08-21 reed@google.com improve verts bench
2019-08-21 brianosman@google.com Conservatively consider any path with tiny edges to be concave
2019-08-21 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms 6655095842ec..12b0343d8960 (1 commits)
2019-08-21 kjlubick@google.com Fix aggregators to use new gold objects

Created with:
  gclient setdep -r src/third_party/skia@9e081d164c81

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-21 17:06:25 -04:00
stuartmorgan
ab097a59fa
De-dup FILE output for each license (#10945)
Only list each file once per license block.
2019-08-21 10:12:41 -07:00
skia-flutter-autoroll
2022a21a58
Roll src/third_party/skia f99b7960f433..80bff5b3a2d7 (2 commits) (#11343)
https://skia.googlesource.com/skia.git/+log/f99b7960f433..80bff5b3a2d7

git log f99b7960f433..80bff5b3a2d7 --date=short --no-merges --format='%ad %ae %s'
2019-08-21 robertphillips@google.com Remove GrProxyPendingIO
2019-08-21 herb@google.com Move SK_API from the class to the methods

Created with:
  gclient setdep -r src/third_party/skia@80bff5b3a2d7

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-21 09:33:04 -04:00
stuartmorgan
16082bc54f
Roll angle licenses (#11035)
Rolls ANGLE forward to pick up the fix for
https://bugs.chromium.org/p/angleproject/issues/detail?id=3811
which substantially reduces the number of ANGLE copyright variants.

Updates LICENSES accordingly.
2019-08-21 05:51:27 -07:00
skia-flutter-autoroll
5ac4c83231
Roll src/third_party/skia 0b9801eadc12..f99b7960f433 (3 commits) (#11338)
https://skia.googlesource.com/skia.git/+log/0b9801eadc12..f99b7960f433

git log 0b9801eadc12..f99b7960f433 --date=short --no-merges --format='%ad %ae %s'
2019-08-21 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 6aca71d7d705..6d653c02dd24 (4 commits)
2019-08-21 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src 8cd21345a0e8..85a9084804fd (458 commits)
2019-08-21 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader fd72dd0a439f..92eb0415d0b1 (1 commits)

Created with:
  gclient setdep -r src/third_party/skia@f99b7960f433

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-21 03:56:26 -04:00
Jonah Williams
a5d887cbe4
Reland remove kernel sdk script (#10814) 2019-08-20 21:16:02 -07:00
skia-flutter-autoroll
05a0074580
Roll src/third_party/skia aa3820a9123c..0b9801eadc12 (3 commits) (#11334)
https://skia.googlesource.com/skia.git/+log/aa3820a9123c..0b9801eadc12

git log aa3820a9123c..0b9801eadc12 --date=short --no-merges --format='%ad %ae %s'
2019-08-20 bungeman@google.com Use void(void*) instead of decltype with sk_free.
2019-08-20 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-20 senorblanco@chromium.org Dawn: moar textures.

Created with:
  gclient setdep -r src/third_party/skia@0b9801eadc12

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-20 23:58:15 -04:00
Chinmay Garde
9b1f6d37a7
When using a custom compositor, ensure the root canvas is flushed. (#11310)
The root canvas is managed by the external view embedder when using a custom
compositor. Due to this, frame submission on the surface will not end up
flushing the same (because the surface doesn’t have it to begin with). Fixed
with tests.
2019-08-20 17:06:57 -07:00
skia-flutter-autoroll
c43739ba53
Roll src/third_party/skia b081bc4a3139..aa3820a9123c (16 commits) (#11314)
https://skia.googlesource.com/skia.git/+log/b081bc4a3139..aa3820a9123c

git log b081bc4a3139..aa3820a9123c --date=short --no-merges --format='%ad %ae %s'
2019-08-20 herb@google.com Remove using Settings for SkTextBlobCacheDiffCanvas
2019-08-20 ccameron@chromium.org Increase GrMtlPipelineState caches size by 8x
2019-08-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms d931999c3afd..6655095842ec (1 commits)
2019-08-20 bungeman@google.com Make SkFunctionWrapper a better wrapper.
2019-08-20 fmalita@chromium.org Faster SkPathEdgeIter
2019-08-20 halcanary@google.com RELEASE_NOTES: formatting cleanup, add some urls
2019-08-20 herb@google.com Increase the on stack array to reduce memory allocation
2019-08-20 jlavrova@google.com Placeholders implementation + unit tests
2019-08-20 reed@google.com make pathiter bench a little more realistic
2019-08-20 halcanary@google.com RELEASE_NOTES: note change to SkMallocPixelRef
2019-08-20 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-20 egdaniel@google.com Move transferFrom commands from GrOp and into GrRenderTask.
2019-08-20 halcanary@google.com SkQP: split make_apk script into create_apk and make_apk
2019-08-20 brianosman@google.com Reland "Remove old version of MakeCrossContextFromPixmap"
2019-08-20 halcanary@google.com SkBitmap: simplify setPixels()
2019-08-20 bsalomon@google.com GrRectBlurEffect: approximate piecewise cubic with quintic.

Created with:
  gclient setdep -r src/third_party/skia@aa3820a9123c

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-20 17:56:37 -04:00
Ben Konyi
251e28046f Roll src/third_party/dart f7902889b6..027071318f (18 commits)
dart-lang/sdk@027071318f [cfe] Change outline test to test strong mode
dart-lang/sdk@363ae34c55 [CFE] Third batch of fixes for requiring explicit types
dart-lang/sdk@e60cbdfd9e [CFE] Add test for running old dills
dart-lang/sdk@de45a83755 [test] Makes spawn_function_custom_class_test more robust.
dart-lang/sdk@f5f942684b Fix invalid literal list element crash
dart-lang/sdk@d153e98447 Revert "[cfe] Gather constraints from both possibilities for FutureOr"
dart-lang/sdk@b99df2be86 [CFE] Language versioning - additional tests
dart-lang/sdk@10e63b7840 [CFE] Get fragment from default package - use language version if any
dart-lang/sdk@27c8d8b7a8 [benchmark] Stop benchmarking fasta in legacy mode.
dart-lang/sdk@464cea0a9f [benchmark] Test dart2js-x continues to work.
dart-lang/sdk@00e9561798 [cfe] Gather constraints from both possibilities for FutureOr
dart-lang/sdk@6e2b3f0326 [vm] Greatly reduce handle allocation during reload.
dart-lang/sdk@56b3dede78 Implement some missed methods for summary2 support
dart-lang/sdk@209c6f8ab9 [pkg:vm_service] fix some analysis errors in the generated vm_service library
dart-lang/sdk@b52b2c3910 [dart2js] Don't produce '-2' for default type argument values with new RTI.
dart-lang/sdk@f37fdef1c2 [vm, service] Fix out-of-bounds access when processing requestHeapSnapshot's arguments.
dart-lang/sdk@5087b99361 Report final re-assignment in for-in parts. Fixes #30486
dart-lang/sdk@0ad703b534 [pkg:vm_service] re-generate the library based on the latest spec
2019-08-20 14:33:20 -07:00
Yegor
a6cd477f54
Add Chrome to Dockerfile (#11210) 2019-08-20 12:19:47 -07:00
skia-flutter-autoroll
ca86f6d7e1
Roll src/third_party/skia 52a6a40535b0..b081bc4a3139 (4 commits) (#11267)
https://skia.googlesource.com/skia.git/+log/52a6a40535b0..b081bc4a3139

git log 52a6a40535b0..b081bc4a3139 --date=short --no-merges --format='%ad %ae %s'
2019-08-20 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update Go deps
2019-08-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 13cc0fce4340..6aca71d7d705 (5 commits)
2019-08-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src 3b734c2675b5..8cd21345a0e8 (407 commits)
2019-08-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader dadeb009a297..fd72dd0a439f (5 commits)

Created with:
  gclient setdep -r src/third_party/skia@b081bc4a3139

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-20 14:10:22 -04:00
Ben Konyi
d212b9ab33
Revert "Roll src/third_party/dart f7902889b6..6e2b3f0326 (7 commits)" (#11298)
This reverts commit e9b4a5957e21a0aa09bcebe8a1728163fbdf68ff.
2019-08-20 10:41:31 -07:00
Ben Konyi
43db5257f4
Revert "Roll src/third_party/dart 6e2b3f0326..b99df2be86 (5 commits) (#11287)" (#11297)
This reverts commit df31dba49f0a23bafb34b4f614074e991ee813a7.
2019-08-20 10:40:48 -07:00
Ben Konyi
df31dba49f
Roll src/third_party/dart 6e2b3f0326..b99df2be86 (5 commits) (#11287)
dart-lang/sdk@b99df2be86 [CFE] Language versioning - additional tests
dart-lang/sdk@10e63b7840 [CFE] Get fragment from default package - use language version if any
dart-lang/sdk@27c8d8b7a8 [benchmark] Stop benchmarking fasta in legacy mode.
dart-lang/sdk@464cea0a9f [benchmark] Test dart2js-x continues to work.
dart-lang/sdk@00e9561798 [cfe] Gather constraints from both possibilities for FutureOr
2019-08-20 10:14:13 -07:00
Ben Konyi
e9b4a5957e Roll src/third_party/dart f7902889b6..6e2b3f0326 (7 commits)
dart-lang/sdk@6e2b3f0326 [vm] Greatly reduce handle allocation during reload.
dart-lang/sdk@56b3dede78 Implement some missed methods for summary2 support
dart-lang/sdk@209c6f8ab9 [pkg:vm_service] fix some analysis errors in the generated vm_service library
dart-lang/sdk@b52b2c3910 [dart2js] Don't produce '-2' for default type argument values with new RTI.
dart-lang/sdk@f37fdef1c2 [vm, service] Fix out-of-bounds access when processing requestHeapSnapshot's arguments.
dart-lang/sdk@5087b99361 Report final re-assignment in for-in parts. Fixes #30486
dart-lang/sdk@0ad703b534 [pkg:vm_service] re-generate the library based on the latest spec
2019-08-19 22:11:47 -07:00
skia-flutter-autoroll
10167db433
Roll src/third_party/skia 5f152f07455c..52a6a40535b0 (1 commits) (#11253)
https://skia.googlesource.com/skia.git/+log/5f152f07455c..52a6a40535b0

git log 5f152f07455c..52a6a40535b0 --date=short --no-merges --format='%ad %ae %s'
2019-08-19 liyuqian@google.com Add savelayer_with_backdrop GM to benchmark

Created with:
  gclient setdep -r src/third_party/skia@52a6a40535b0

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 23:38:46 -04:00
Ben Konyi
8098486977 Roll src/third_party/dart 9f13d07670..f7902889b6 (3 commits)
dart-lang/sdk@f7902889b6 [vm, bytecode] Add missing class declaration loading during reload.
dart-lang/sdk@6667b7fa45 Drop unused _dhelperRepl method
dart-lang/sdk@bb076a20c5 Fix unsupported initializer exception
2019-08-19 19:11:10 -07:00
skia-flutter-autoroll
f4591a73a5
Roll src/third_party/skia 8566dda51b42..5f152f07455c (8 commits) (#11241)
https://skia.googlesource.com/skia.git/+log/8566dda51b42..5f152f07455c

git log 8566dda51b42..5f152f07455c --date=short --no-merges --format='%ad %ae %s'
2019-08-19 reed@google.com add path-edger; lightweight Iter for edges
2019-08-19 herb@google.com Use bulk API for bitmap glyph drawing
2019-08-19 csmartdalton@google.com Add GrvkGpuRTCommandBuffer::appendSampledTexture
2019-08-19 brianosman@google.com Temporary Lua hook to measure impact of conservative convexity
2019-08-19 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-19 robertphillips@google.com Add textureReleaseProc and releaseContext to SkImage factory functions
2019-08-19 fmalita@chromium.org [skottie] Shaper downscale-to-fit vertical alignment mode
2019-08-19 jlavrova@google.com Fixed temp dir for snapshots

Created with:
  gclient setdep -r src/third_party/skia@5f152f07455c

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 19:56:22 -04:00
Ben Konyi
3e10d92b2b Roll src/third_party/dart 0e201edeeb..9f13d07670 (27 commits)
dart-lang/sdk@9f13d07670 Revert "[dartdevc] Remove explicit calls of the constant evaluator in DDC."
dart-lang/sdk@6e987b6eb5 [vm, service] Add requestHeapSnapshot.
dart-lang/sdk@8a9448138a [vm/compiler] Ensure the class check we insert is based on the same CidTargets we made the HasSingleTarget decision on
dart-lang/sdk@11910a0c9c [vm] Add --verbose-stack-overflow option to simplify investigation of stack overflow errors
dart-lang/sdk@3568f78fe7 ensure super constructor invocation param list not null during recovery
dart-lang/sdk@0537c9d326 [dart2js] Fix DartType.subst
dart-lang/sdk@0f109da0d1 Updating the package:js README
dart-lang/sdk@a984c5ce57 improve invalid string literal recovery to fix crash
dart-lang/sdk@bdd77cd0b2 Ensure function type param has non-null identifier
dart-lang/sdk@ed69e2dc35 Add a hint if extension methods are used with an sdk version constraint that does not support them
dart-lang/sdk@89c4f94b60 Trigger dependency on exporting a library.
dart-lang/sdk@d22fd240ca When building summary1 for SDK, set 'useSummary2' to false.
dart-lang/sdk@547a83ddbd Remove ExecutableMember.from3() and use from2() instead.
dart-lang/sdk@9b80826f84 Don't record dependencies on arguments if the instantiated class is not generic.
dart-lang/sdk@0681cc2d36 Migration: extract a common method for doing null checks.
dart-lang/sdk@203038ffc6 Migration: integrate flow analysis of do and continue statements.
dart-lang/sdk@0ff0cc1229 Flow analysis: remove unnecessary argument to doStatement_end.
dart-lang/sdk@ee37965e49 [cfe] Handle static access of static extension members
dart-lang/sdk@208c8dd0c0 [benchmark] Remove SIMDBC benchmark test coverage.
dart-lang/sdk@2706114f4d Revert "[infra] Remove non-essential test expectations from kernel status files"
dart-lang/sdk@e64738ffbc [vm/ffi] DynamicLibrary.process() and DynamicLibrary.executable()
dart-lang/sdk@2891ec679b [CFE/VM] Fix merge/typo for bump to kernel version 29
dart-lang/sdk@a04a567801 Restore "Crash" status to test in status file, accidentally removed.
dart-lang/sdk@5c438c8d25 Upgrade tflite_native to v0.2.1 for silent tflite dynamic library
dart-lang/sdk@966b7de1ff [infra] status file clean up tool: also remove sections with comments
dart-lang/sdk@c010458732 [infra] Remove non-essential test expectations from kernel status files
dart-lang/sdk@fb8df61606 [dartdevc] Remove explicit calls of the constant evaluator in DDC.
2019-08-19 15:11:46 -07:00
Dan Field
74ac6d25ec
Re-enable firebase test and don't use google login (#11228) 2019-08-19 13:46:54 -07:00
skia-flutter-autoroll
9f1310a74e
Roll src/third_party/skia f8221786d088..8566dda51b42 (4 commits) (#11220)
https://skia.googlesource.com/skia.git/+log/f8221786d088..8566dda51b42

git log f8221786d088..8566dda51b42 --date=short --no-merges --format='%ad %ae %s'
2019-08-19 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2019-08-19 skia-autoroll@skia-public.iam.gserviceaccount.com Roll skia/third_party/skcms 958fec279ed5..d931999c3afd (1 commits)
2019-08-19 egdaniel@google.com Remove some unused GrPixelConfig functions.
2019-08-19 csmartdalton@google.com Add kRequiresManualMSAAResolve to GrInternalSurfaceFlags

Created with:
  gclient setdep -r src/third_party/skia@8566dda51b42

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 16:02:32 -04:00
Dan Field
1c8c639073
Make firebase testlab always pass (#11226) 2019-08-19 12:36:33 -07:00
stuartmorgan
19327c8b7a
Show all license diffs (#11034)
Instead of gathering all license diffs but only showing the changes to
the first directory that has a diff, show all diffs before exiting
licenses.sh.

Fixes https://github.com/flutter/flutter/issues/38634
2019-08-19 09:24:21 -07:00
skia-flutter-autoroll
7292d47e61
Roll src/third_party/skia 9648b419f5cf..f8221786d088 (1 commits) (#11206)
https://skia.googlesource.com/skia.git/+log/9648b419f5cf..f8221786d088

git log 9648b419f5cf..f8221786d088 --date=short --no-merges --format='%ad %ae %s'
2019-08-19 egdaniel@google.com Remove incorrect metal assert.

Created with:
  gclient setdep -r src/third_party/skia@f8221786d088

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 10:34:29 -04:00
skia-flutter-autoroll
6c843b4dd2
Roll src/third_party/skia 08f5b07831d9..9648b419f5cf (2 commits) (#11192)
https://skia.googlesource.com/skia.git/+log/08f5b07831d9..9648b419f5cf

git log 08f5b07831d9..9648b419f5cf --date=short --no-merges --format='%ad %ae %s'
2019-08-19 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 cdecd97ceefa..13cc0fce4340 (11 commits)
2019-08-19 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 2bcadf49d820..dadeb009a297 (3 commits)

Created with:
  gclient setdep -r src/third_party/skia@9648b419f5cf

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 04:58:00 -04:00
skia-flutter-autoroll
d8973a95a0
Roll src/third_party/skia daa26335bb6a..08f5b07831d9 (1 commits) (#11182)
https://skia.googlesource.com/skia.git/+log/daa26335bb6a..08f5b07831d9

git log daa26335bb6a..08f5b07831d9 --date=short --no-merges --format='%ad %ae %s'
2019-08-19 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src f21be5041b55..3b734c2675b5 (436 commits)

Created with:
  gclient setdep -r src/third_party/skia@08f5b07831d9

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-19 01:14:58 -04:00
skia-flutter-autoroll
6a5cbbdb4f
Roll src/third_party/skia 174ea86fa6c5..daa26335bb6a (1 commits) (#11138)
https://skia.googlesource.com/skia.git/+log/174ea86fa6c5..daa26335bb6a

git log 174ea86fa6c5..daa26335bb6a --date=short --no-merges --format='%ad %ae %s'
2019-08-18 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update SKP version

Created with:
  gclient setdep -r src/third_party/skia@daa26335bb6a

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-18 06:25:14 -04:00
skia-flutter-autoroll
8d195ba28f
Roll src/third_party/skia 4b567cd679ab..174ea86fa6c5 (1 commits) (#11127)
https://skia.googlesource.com/skia.git/+log/4b567cd679ab..174ea86fa6c5

git log 4b567cd679ab..174ea86fa6c5 --date=short --no-merges --format='%ad %ae %s'
2019-08-18 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update Go deps

Created with:
  gclient setdep -r src/third_party/skia@174ea86fa6c5

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=egdaniel@google.com
2019-08-18 02:39:26 -04:00
skia-flutter-autoroll
5540684152
Roll src/third_party/skia 9318a6cfbcdd..4b567cd679ab (1 commits) (#11077)
https://skia.googlesource.com/skia.git/+log/9318a6cfbcdd..4b567cd679ab

git log 9318a6cfbcdd..4b567cd679ab --date=short --no-merges --format='%ad %ae %s'
2019-08-17 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update Go deps

Created with:
  gclient setdep -r src/third_party/skia@4b567cd679ab

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=scroggo@google.com
2019-08-17 05:01:22 -04:00
skia-flutter-autoroll
d0a76673b8
Roll src/third_party/skia a0c9d43c2075..9318a6cfbcdd (1 commits) (#11073)
https://skia.googlesource.com/skia.git/+log/a0c9d43c2075..9318a6cfbcdd

git log a0c9d43c2075..9318a6cfbcdd --date=short --no-merges --format='%ad %ae %s'
2019-08-17 reed@google.com build custom blitter for drawAtlas

Created with:
  gclient setdep -r src/third_party/skia@9318a6cfbcdd

The AutoRoll server is located here: https://autoroll.skia.org/r/skia-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.


Bug: None
TBR=scroggo@google.com
2019-08-17 01:14:29 -04:00
Ben Konyi
c0530f3834 Roll src/third_party/dart beee442625..79e6c74337 (8 commits)
dart-lang/sdk@79e6c74337 [vm/bytecode] Fix VM unit tests which load kernel with bytecode
dart-lang/sdk@de45a3f765 [vm/bytecode] Fix vm/cc/TryCatchOptimizer unit tests
dart-lang/sdk@2a41a800fe [vm/fuzzer] Add FFI methods
dart-lang/sdk@e2fdff1009 [infra] Add hack to hardcode version to 2.5.0 for Flutter 1.9
dart-lang/sdk@ea7348c5f0 Revert "[vm/bytecode] Switch kernel service dill to bytecode if building Dart SDK with --bytecode"
dart-lang/sdk@6b531b2ba4 [dart2js] (New RTI) Fix JSInvocationMirror.typeArguments
dart-lang/sdk@8d344498be Add CHANGELOG entry for constant update 2018 changes.
dart-lang/sdk@0f331d42a2 Store default value code for default formal parameters.
2019-08-16 22:02:46 -07:00