diff options
Diffstat (limited to 'testing/test.gni')
-rw-r--r-- | testing/test.gni | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testing/test.gni b/testing/test.gni index b6677d45fc..01b51cc955 100644 --- a/testing/test.gni +++ b/testing/test.gni @@ -54,9 +54,12 @@ template("test") { # the default shared_library configs rather than executable configs. configs -= [ "//build/config:shared_library_config", - "//build/config/android:hide_native_jni_exports", + "//build/config/android:hide_all_but_jni_onload", + ] + configs += [ + "//build/config:executable_config", + "//build/config/android:hide_all_but_jni", ] - configs += [ "//build/config:executable_config" ] # Don't output to the root or else conflict with the group() below. output_name = rebase_path(_exec_output, root_out_dir) |