Upload sky_viewer symbols to Google Storage.

With this change, each time sky_viewer.mojo is uploaded to Google
Storage (both for Linux and Android), debugging symbols are also
uploaded in a symbols/ subdirectory.
This commit is contained in:
Etienne Membrives 2015-08-31 15:29:29 +02:00
parent 2030c6fa21
commit a93c844989
2 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ root_dist_dir = "$root_build_dir/dist"
copy("sky_viewer") {
sources = [
"$root_build_dir/sky_viewer.mojo",
"$root_build_dir/symbols/libsky_viewer_library.so",
]
outputs = [ "$root_dist_dir/viewer/{{source_file_part}}" ]

View File

@ -51,12 +51,14 @@ ARTIFACTS = {
'android-arm': [
Artifact('shell', 'SkyShell.apk'),
Artifact('viewer', 'sky_viewer.mojo'),
Artifact('viewer', 'libsky_viewer_library.so'),
],
'linux-x64': [
Artifact('shell', 'icudtl.dat'),
Artifact('shell', 'sky_shell'),
Artifact('shell', 'sky_snapshot'),
Artifact('viewer', 'sky_viewer.mojo'),
Artifact('viewer', 'libsky_viewer_library.so'),
]
}