Specialize for gce targets in openssh am: eab54b0935 am: eecbfc646e am: 2e8c31b1b2 am: cb55dafbe3
am: 86f43bbab5

Change-Id: I47a212828e8eda3f3610decab31c3c5531fe3a27
diff --git a/Android.mk b/Android.mk
index 355f64c..129f719 100644
--- a/Android.mk
+++ b/Android.mk
@@ -295,6 +295,15 @@
 
 LOCAL_SHARED_LIBRARIES += libssh libssl libcrypto libdl libz libcutils
 
+# libc.bootstrap is available/required since Q
+ifneq ($(PLATFORM_VERSION_CODENAME)|$(call math_lt,$(PLATFORM_SDK_VERSION),29),REL|true)
+# This filter is for old branches that does not have math_lt macro
+# This is equivalently PLATFORM_SDK_VERSION > 27
+ifeq ($(filter 14 15 16 17 18 19 20 21 22 23 24 25 26 27,$(PLATFORM_SDK_VERSION)),)
+LOCAL_SHARED_LIBRARIES += libc.bootstrap
+endif
+endif
+
 include $(BUILD_EXECUTABLE)
 
 ###################### ssh-keygen ######################
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..3d357dd
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1,3 @@
+# Default code reviewers picked from top 3 or more developers.
+# Please update this list if you find better candidates.
+ghartman@google.com