From bc0a410b146fb962f433edf4bcc676dc3dc72a21 Mon Sep 17 00:00:00 2001 From: afinch7 Date: Sun, 26 May 2019 17:16:09 -0400 Subject: [PATCH] fixed issue with test binding plugin build --- test_binding_plugin/BUILD.gn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_binding_plugin/BUILD.gn b/test_binding_plugin/BUILD.gn index 6d692fbbae1c72..63f0afd3fcf7f3 100644 --- a/test_binding_plugin/BUILD.gn +++ b/test_binding_plugin/BUILD.gn @@ -16,13 +16,13 @@ group("default") { if (is_linux) { shared_lib_prefix = "lib" - shared_lib_suffix = ".so" + shared_lib_suffix = "so" } else if (is_mac) { shared_lib_prefix = "lib" - shared_lib_suffix = ".dylib" + shared_lib_suffix = "dylib" } else if (is_win) { shared_lib_prefix = "" - shared_lib_suffix = ".dll" + shared_lib_suffix = "dll" } else { assert(false, "Unsupported platform") }