6330 Commits

Author SHA1 Message Date
Todd Volkert
0ecee00696 Fix sky_snapshot build to only link libgcc_s if on Linux 2016-02-06 15:55:48 -08:00
Todd Volkert
413f98e1ed Merge pull request #2362 from tvolkert/google3
Pass -lgcc_s to sky_snapshot build.
2016-02-06 15:03:48 -08:00
Todd Volkert
c6eb3c521d Pass -lgcc_s to sky_snapshot build.
libgcc_s is not a DT_NEEDED library; it gets loaded implicitly.
This change ensures that rpath is referenced when searching for
the so. This in turn gets the resulting sky_snapshot binary
closer to being able to run in Google's production environment.
2016-02-06 14:38:46 -08:00
Ian Hickson
e774630b98 Merge pull request #2357 from Hixie/accessibility
Track whether accessibility is enabled.
2016-02-05 10:34:20 -08:00
Hixie
d0e17e679a Track whether accessibility is enabled.
If we send accessibility events when accessibility is disabled, we crash.
2016-02-05 10:05:57 -08:00
Ian Hickson
380d5353cb Merge pull request #2353 from Hixie/actions
Make AccessibilityNodeInfos interactive.
2016-02-05 07:47:34 -08:00
Chinmay Garde
36c536f4e0 Merge pull request #2356 from chinmaygarde/master
Service vendors no longer specify the service entry point
2016-02-04 19:25:48 -08:00
Hixie
707ff9b4e2 Implement hover touch exploration mode on Android. 2016-02-04 16:56:07 -08:00
Chinmay Garde
800de4b122 Service vendors no longer specify the service entry point
Instead, the entry point is well known. The service name is passed as an argument to the service.
2016-02-04 16:55:17 -08:00
Hixie
0fa8524288 Android accessibility focus support
This lets you focus and unfocus a node.

Still doesn't seem to be enough to actually have the node exposed in
TalkBack. We probably need hover for that (that's next).

(Also fixes a leak for when a subtree has been disconnected; previously
we were only forgetting the top node of the subtree, not the
descendants. Thanks @krisgiesing for catching that.)
2016-02-04 15:53:17 -08:00
Hixie
17806fdb76 Tell Android when the accessibility tree changes
Hard to say if this actually works. We'll find out once we've filled
this out enough that you can walk the tree in Android's Talkback UI.
2016-02-04 14:53:22 -08:00
Hixie
cb789edc94 Make AccessibilityNodeInfos interactive.
This exposes the actions on AccessibilityNodeInfo nodes.
It also tries to make the code that handles reloads more correct.
2016-02-04 14:53:22 -08:00
Jason Simmons
fcc26eeff8 Merge pull request #2351 from jason-simmons/roll_dart_0204
Roll Dart to 1.14.1
2016-02-04 14:23:36 -08:00
Jason Simmons
7980c7fc5c Roll Dart to 1.14.1 2016-02-04 14:05:55 -08:00
Chinmay Garde
99bc35379a Merge pull request #2354 from chinmaygarde/master
iOS: Dont strip release binaries
2016-02-04 13:19:13 -08:00
Chinmay Garde
6c46cfed8f iOS: Dont strip release binaries 2016-02-04 13:06:30 -08:00
Chinmay Garde
8dd3800e9d Merge pull request #2352 from chinmaygarde/master
Dont keep the fake runner around as it fails validation when preparing release archives
2016-02-04 13:06:08 -08:00
Chinmay Garde
b815431cde Dont keep the fake runner around as it fails validation when preparing release archives 2016-02-04 12:58:13 -08:00
Ian Hickson
5a7907d351 Merge pull request #2350 from Hixie/accessibility
Flutter<->Android accessibility bridge
2016-02-04 09:46:59 -08:00
Hixie
adbb587ab1 Flutter<->Android accessibility bridge
This is another step towards enabling accessibility for Flutter on
Android. It exposes the semantics tree to Android's accessibility API
when accessibility is enabled.

It does not yet:
 - allow one to actually interact with the application via the
   accessibility API
 - expose the accessibility tree to touch exploration
 - implement the accessibility focus API

However, you can see the tree if you run uiautomatorviewer. It is there,
and it matches the UI. At least in Stocks. I didn't test anything else.
2016-02-04 09:15:07 -08:00
Adam Barth
447f7fc14f Merge pull request #2348 from abarth/view_host
Pass the Mozart ViewHost into Dart
2016-02-04 08:59:33 -08:00
Jason Simmons
6c35840837 Merge pull request #2344 from jason-simmons/sound_file_cleanup
Change services to create temporary files that will be deleted by the…
2016-02-03 15:15:58 -08:00
Chinmay Garde
055a053b58 Merge pull request #2349 from chinmaygarde/master
Update service handler in dylib to use the Mojo C API only
2016-02-03 15:11:47 -08:00
Chinmay Garde
42019c43da Update service handler in dylib use the Mojo C API only 2016-02-03 15:00:17 -08:00
Adam Barth
aec7d422e7 Pass the Mozart ViewHost into Dart
Dart needs access to the ViewHost in order to create child views.
2016-02-03 14:39:45 -08:00
Adam Barth
4192794b60 Merge pull request #2347 from abarth/composite_child_scenes
Include child scenes when uploading to Mozart
2016-02-03 14:21:22 -08:00
Adam Barth
e3bf0fa3c1 Include child scenes when uploading to Mozart
Previously we just dropped child scenes on the floor. Now we upload them
to Mozart. However, we just draw them on top of all the other content
and don't apply any clips or blends.
2016-02-03 14:16:09 -08:00
Chinmay Garde
cd2dbd5ed9 Merge pull request #2346 from chinmaygarde/master
Make the `dynamic_service_loader` target explicitly depend on common deps for generated headers
2016-02-03 14:01:59 -08:00
Chinmay Garde
7dcf0c7765 Make the dynamic_service_loader target explicitly depend on common deps for generated headers 2016-02-03 13:59:17 -08:00
Chinmay Garde
144ed4d35e Merge pull request #2345 from chinmaygarde/master
Install Mojo system thunks in dylib loaded for dynamic service resolution
2016-02-03 13:45:59 -08:00
Chinmay Garde
c40b3d808d Install Mojo system thunks in dylib loaded for dynamic service resolution 2016-02-03 13:45:20 -08:00
Jason Simmons
1782b8f280 Change services to create temporary files that will be deleted by the ResourceCleaner
If the Sky shell process does not have an orderly shutdown, then temporary
files created by services may never be cleaned up.

The ResourceCleaner task will run at the next startup and clean up any files
that match the prefix used by Chromium's temporary file API.  Services will
now use the same prefix for their files.
2016-02-03 11:50:09 -08:00
Devon Carew
f528cf38ff Merge pull request #2341 from devoncarew/xcode_target
use 'build --target' in the xcode project instead of --main
2016-02-03 11:49:37 -08:00
Ian Hickson
3f1bde7196 Merge pull request #2343 from Hixie/rev
revving engine
2016-02-03 10:13:53 -08:00
Hixie
01acefa749 revving engine 2016-02-03 10:13:24 -08:00
Adam Barth
974f0a3b64 Merge pull request #2342 from abarth/fix_mac
Fix the mac build
2016-02-03 10:11:39 -08:00
Adam Barth
94dac511f6 Fix the mac build 2016-02-03 09:58:47 -08:00
Devon Carew
938cf2d2b0 use 'build --target' in the xcode project instead of --main 2016-02-03 09:29:49 -08:00
Chinmay Garde
99b4f89c03 Merge pull request #2340 from chinmaygarde/master
Fix iOS implementation of SystemChrome after mojom updates
2016-02-02 17:11:20 -08:00
Chinmay Garde
9701b8ae7b Fix iOS implementation of SystemChrome after mojom updates 2016-02-02 17:08:54 -08:00
Jason Simmons
2dd834fd45 Merge pull request #2339 from jason-simmons/platform_activity_services
Implementation of platform services for Android
2016-02-02 17:02:59 -08:00
Chinmay Garde
57fdc5bf8a Merge pull request #2338 from chinmaygarde/master
Allow dynamic service resolution in the iOS shell
2016-02-02 16:56:01 -08:00
Chinmay Garde
a7349a1142 Allow dynamic service resolution in the iOS shell 2016-02-02 16:55:35 -08:00
Jason Simmons
7730a0c123 Implementation of platform services for Android 2016-02-02 16:10:22 -08:00
Ian Hickson
b70508cbd0 Merge pull request #2337 from Hixie/semantics-mojom
Make the arrays nullable in the Semantics mojom.
2016-02-02 14:53:28 -08:00
Yegor
6d086badf9 Merge pull request #2336 from yjbanov/contributing-update-2
tell people to submit code after LGTM
2016-02-02 13:53:09 -08:00
Hixie
00f2b17f66 Make the arrays nullable in the Semantics mojom. 2016-02-02 13:36:15 -08:00
Devon Carew
7204fc0663 Merge pull request #2335 from devoncarew/start_paused
some work towards a --start-paused flag
2016-02-02 12:20:43 -08:00
yjbanov
88abfa0377 tell people to submit code after LGTM 2016-02-02 12:20:08 -08:00
Devon Carew
3c83f895ed some work towards a --start-paused flag 2016-02-02 11:44:01 -08:00