diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/test.gni | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/test.gni b/testing/test.gni index 3f6f175613..535a749101 100644 --- a/testing/test.gni +++ b/testing/test.gni @@ -372,3 +372,12 @@ template("test") { } } } + +# Test defaults. +set_defaults("test") { + if (is_android) { + configs = default_shared_library_configs + } else { + configs = default_executable_configs + } +} |