Commit e4a52cb5 by Tom Anderson Committed by Commit Bot

Fix Android ASAN tests when is_component_build=false

Context in Chromium CL: https://chromium-review.googlesource.com/c/chromium/src/+/1405277/ This CL must be landed first. BUG=chromium:916973 R=thakis,cwallez,fjhenigman,geofflang,jmadill,ynovikov Change-Id: Icde4ec98c9031a262e0dfafa5cfe2a702c4c4e3e Reviewed-on: https://chromium-review.googlesource.com/c/1405908Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarNico Weber <thakis@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent a3b2e71f
......@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("../../gni/angle.gni")
import("//build/config/c++/c++.gni")
import("//build/config/chromecast_build.gni")
import("//testing/test.gni")
import("angle_unittests.gni")
......@@ -288,8 +289,11 @@ if (is_win || is_linux || is_android || is_mac) {
if (is_android) {
use_native_activity = true
if (!export_libcxxabi_from_executables) {
# This config is already removed if(export_libcxxabi_from_executables)
configs -= [ "//build/config/android:hide_all_but_jni" ]
}
}
if (is_win) {
sources += angle_white_box_perf_tests_win_sources
......@@ -338,8 +342,11 @@ if (is_win || is_linux || is_android || is_mac) {
if (is_android) {
use_native_activity = true
if (!export_libcxxabi_from_executables) {
# This config is already removed if(export_libcxxabi_from_executables)
configs -= [ "//build/config/android:hide_all_but_jni" ]
}
}
configs += [
angle_root + ":internal_config",
......
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