Commit 0d7dc80b authored by Sergey Ulanov's avatar Sergey Ulanov Committed by Commit Bot

Roll Fuchsia SDK from c9b6deebf8ef to 7524a90f78ba


The AutoRoll server is located here: https://fuchsia-sdk-chromium-roll.skia.org

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.


CQ_INCLUDE_TRYBOTS=luci.chromium.try:fuchsia_arm64_cast_audio;luci.chromium.try:fuchsia_x64_cast_audio
TBR=cr-fuchsia+bot@chromium.org

Change-Id: If8304fd344786392300cfe1f45e3246fd18fff76
Reviewed-on: https://chromium-review.googlesource.com/1142514
Commit-Queue: Sergey Ulanov <sergeyu@chromium.org>
Reviewed-by: default avatarSergey Ulanov <sergeyu@chromium.org>
Reviewed-by: default avatarFuchsia SDK Autoroller <fuchsia-sdk-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/master@{#576323}
parent 30ce134f
...@@ -36,9 +36,13 @@ def ReadDynamicLibDeps(paths): ...@@ -36,9 +36,13 @@ def ReadDynamicLibDeps(paths):
if match: if match:
lib = match.group('lib') lib = match.group('lib')
# libc.so is an alias for ld.so.1 .
if lib == 'libc.so':
lib = 'ld.so.1'
# Skip libzircon.so, as it is supplied by the OS loader. # Skip libzircon.so, as it is supplied by the OS loader.
if lib != 'libzircon.so': if lib != 'libzircon.so':
libs.append(match.group('lib')) libs.append(lib)
return libs return libs
...@@ -198,13 +202,6 @@ def BuildManifest(root_dir, out_dir, app_name, app_filename, ...@@ -198,13 +202,6 @@ def BuildManifest(root_dir, out_dir, app_name, app_filename,
manifest.write('%s=%s\n' % (in_package_path, manifest.write('%s=%s\n' % (in_package_path,
os.path.relpath(current_file, out_dir))) os.path.relpath(current_file, out_dir)))
# Use libc.so's dynamic linker by aliasing libc.so to ld.so.1.
# Fuchsia always looks for the linker implementation in ld.so.1.
if os.path.basename(in_package_path) == 'libc.so':
manifest.write(
'%s=%s\n' % (os.path.dirname(in_package_path) + '/ld.so.1',
os.path.relpath(current_file, out_dir)))
if not app_found: if not app_found:
raise Exception('Could not locate executable inside runtime_deps.') raise Exception('Could not locate executable inside runtime_deps.')
......
c9b6deebf8ef0d85134dfee4806f1a7bc2df3193 7524a90f78ba1ba27c4b9ab38c3bf418afd210ef
...@@ -172,6 +172,7 @@ fuchsia_sdk_fidl_pkg("gfx") { ...@@ -172,6 +172,7 @@ fuchsia_sdk_fidl_pkg("gfx") {
] ]
deps = [ deps = [
":images", ":images",
":vectorial",
] ]
} }
...@@ -301,6 +302,15 @@ fuchsia_sdk_fidl_pkg("sys") { ...@@ -301,6 +302,15 @@ fuchsia_sdk_fidl_pkg("sys") {
] ]
} }
fuchsia_sdk_fidl_pkg("vectorial") {
namespace = "fuchsia.ui"
namespace_path = "fuchsia/ui"
sources = [
"commands.fidl",
"events.fidl",
]
}
fuchsia_sdk_fidl_pkg("views") { fuchsia_sdk_fidl_pkg("views") {
namespace = "fuchsia.ui" namespace = "fuchsia.ui"
namespace_path = "fuchsia/ui" namespace_path = "fuchsia/ui"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment