Commit 1e6d9607 authored by Sergiy Byelozyorov's avatar Sergiy Byelozyorov Committed by Commit Bot

[tools] Only apply android_unstripped_runtime_outputs on Android where it is defined

R=machenbach@chromium.org

Bug: chromium:838864
Change-Id: Iec0999284336deaf23030d151f075ca78268489e
Reviewed-on: https://chromium-review.googlesource.com/1238474
Commit-Queue: Sergiy Byelozyorov <sergiyb@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#56150}
parent 4d6a01c1
......@@ -283,7 +283,7 @@
'default_optdebug_android_arm': [
'debug', 'arm', 'android', 'v8_enable_slow_dchecks' ],
'default_release_android_arm': [
'release', 'arm', 'android'],
'release', 'arm', 'android', 'android_strip_outputs'],
'default_debug_arm64': [
'debug', 'simulate_arm64', 'v8_enable_slow_dchecks', 'v8_full_debug'],
'default_optdebug_arm64': [
......@@ -421,9 +421,11 @@
'release_arm': [
'release_bot', 'arm', 'hard_float'],
'release_android_arm': [
'release_bot', 'arm', 'android', 'minimal_symbols'],
'release_bot', 'arm', 'android', 'minimal_symbols',
'android_strip_outputs'],
'release_android_arm64': [
'release_bot', 'arm64', 'android', 'minimal_symbols'],
'release_bot', 'arm64', 'android', 'minimal_symbols',
'android_strip_outputs'],
# Release configs for x64.
'release_x64': [
......@@ -585,6 +587,10 @@
'gn_args': 'target_os="android" v8_android_log_stdout=true',
},
'android_strip_outputs': {
'gn_args': 'android_unstripped_runtime_outputs=false',
},
'arm': {
'gn_args': 'target_cpu="arm"',
},
......@@ -716,7 +722,7 @@
},
'release': {
'gn_args': 'is_debug=false android_unstripped_runtime_outputs=false',
'gn_args': 'is_debug=false',
},
'release_bot': {
......
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