Snap for 4778776 from e39cc47d1f1619346a096c0bcdecfa1a66d9d432 to pi-release

Change-Id: If8359d2d91e40cba1c78e41958a68a2076d653d6
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..1d3a5cb
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,87 @@
+// Copyright (C) 2018 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+cc_defaults {
+    name: "libpcap_defaults",
+    cflags: [
+        "-D_BSD_SOURCE",
+        "-DHAVE_CONFIG_H",
+        "-Dlint",
+        "-D_U_=__attribute__((__unused__))",
+        "-Wall",
+        "-Werror",
+        "-Wno-macro-redefined",
+        "-Wno-pointer-arith",
+        "-Wno-sign-compare",
+        "-Wno-unused-parameter",
+        "-Wno-unused-result",
+        "-Wno-tautological-compare",
+    ],
+}
+
+cc_library {
+    name: "libpcap",
+    host_supported: false,
+    vendor_available: true,
+    defaults: ["libpcap_defaults"],
+
+    // (Matches order in libpcap's Makefile.)
+    srcs: [
+        "pcap-linux.c",
+        "pcap-usb-linux.c",
+        "pcap-netfilter-linux-android.c",
+        "fad-getad.c",
+        "pcap.c",
+        "inet.c",
+        "fad-helpers.c",
+        "gencode.c",
+        "optimize.c",
+        "nametoaddr.c",
+        "etherent.c",
+        "savefile.c",
+        "sf-pcap.c",
+        "sf-pcap-ng.c",
+        "pcap-common.c",
+        "bpf_image.c",
+        "bpf_dump.c",
+        "scanner.c",
+        "grammar.c",
+        "bpf_filter.c",
+        "version.c",
+    ],
+
+    export_include_dirs: ["."],
+}
+
+//
+// Tests.
+//
+
+cc_test {
+    name: "libpcap_test",
+    defaults: ["libpcap_defaults"],
+    gtest: false,
+    // (Matches order in libpcap's Makefile.)
+    srcs: [
+        "tests/capturetest.c",
+        "tests/can_set_rfmon_test.c",
+        "tests/filtertest.c",
+        "tests/findalldevstest.c",
+        "tests/opentest.c",
+        "tests/reactivatetest.c",
+        "tests/selpolltest.c",
+    ],
+    static_libs: ["libpcap"],
+    test_per_src: true,
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 098e83a..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,58 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-libpcap_cflags := \
-  -Wno-macro-redefined \
-  -Wno-pointer-arith \
-  -Wno-sign-compare \
-  -Wno-unused-parameter \
-  -D_BSD_SOURCE \
-  -D_U_="__attribute__((unused))" \
-  -Werror \
-
-include $(CLEAR_VARS)
-
-# (Matches order in libpcap's Makefile.)
-LOCAL_SRC_FILES := \
-  pcap-linux.c pcap-usb-linux.c pcap-netfilter-linux-android.c \
-  fad-getad.c \
-  pcap.c inet.c fad-helpers.c gencode.c optimize.c nametoaddr.c \
-  etherent.c savefile.c sf-pcap.c sf-pcap-ng.c pcap-common.c \
-  bpf_image.c bpf_dump.c \
-  scanner.c grammar.c bpf_filter.c version.c \
-
-LOCAL_CFLAGS += $(libpcap_cflags)
-LOCAL_CFLAGS += -DHAVE_CONFIG_H
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
-
-LOCAL_MODULE:= libpcap
-
-include $(BUILD_STATIC_LIBRARY)
-
-include $(CLEAR_VARS)
-
-LOCAL_WHOLE_STATIC_LIBRARIES := libpcap
-LOCAL_MODULE := libpcap
-LOCAL_CFLAGS := -Wall -Werror
-
-include $(BUILD_SHARED_LIBRARY)
-
-# (Matches order in libpcap's Makefile.)
-libpcap_tests :=  \
-  tests/valgrindtest.c \
-  tests/capturetest.c \
-  tests/can_set_rfmon_test.c \
-  tests/filtertest.c \
-  tests/findalldevstest.c \
-  tests/opentest.c \
-  tests/reactivatetest.c \
-  tests/selpolltest.c \
-
-$(foreach test,$(libpcap_tests), \
-  $(eval include $(CLEAR_VARS)) \
-  $(eval LOCAL_MODULE := libpcap_$(basename $(notdir $(test)))) \
-  $(eval LOCAL_SRC_FILES := $(test)) \
-  $(eval LOCAL_CFLAGS := $(libpcap_cflags)) \
-  $(eval LOCAL_STATIC_LIBRARIES := libpcap) \
-  $(eval include $(BUILD_NATIVE_TEST)) \
-)
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..682a067
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1 @@
+enh@google.com