# Copyright 2016 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Builds the Netty fork of Tomcat Native. See http://netty.io/wiki/forked-tomcat-native.html import("//build/config/android/config.gni") import("//build/config/android/rules.gni") # Builds the native part of netty-tcnative library. shared_library("netty-tcnative-so") { output_name = "netty-tcnative" sources = [ "src/c/bb.c", "src/c/error.c", "src/c/jnilib.c", "src/c/native_constants.c", "src/c/ssl.c", "src/c/ssl_private.h", "src/c/sslcontext.c", "src/c/sslutils.c", "src/c/tcn.h", ] include_dirs = [ "../apache-portable-runtime/src/include" ] defines = [ "HAVE_OPENSSL" ] cflags = [ "-w" ] configs -= [ "//build/config/android:hide_all_but_jni_onload" ] deps = [ "../apache-portable-runtime:apr", "../boringssl:boringssl", ] } # Builds the Java part of netty-tcnative library. android_library("netty-tcnative_java") { java_files = [ "src/java/io/netty/internal/tcnative/Buffer.java", "src/java/io/netty/internal/tcnative/CertificateRequestedCallback.java", "src/java/io/netty/internal/tcnative/CertificateVerifier.java", "src/java/io/netty/internal/tcnative/Library.java", "src/java/io/netty/internal/tcnative/NativeStaticallyReferencedJniMethods.java", "src/java/io/netty/internal/tcnative/SessionTicketKey.java", "src/java/io/netty/internal/tcnative/SSL.java", "src/java/io/netty/internal/tcnative/SSLContext.java", ] deps = [ "//base:base_java", ] }