1 // This module target includes just the single core file: NanoHTTPD.java, which 2 // is enough for HTTP 1.1 support and nothing else. 3 // ============================================================================ 4 java_library { 5 name: "libnanohttpd", 6 srcs: ["core/src/main/**/*.java"], 7 sdk_version: "current", 8 } 9 10 // This module target includes SimpleWebServer that supports additional functionality 11 // such as serving files from a specified location, resume of downloads, etc. 12 // ============================================================================ 13 java_library { 14 name: "nanohttpd-webserver", 15 srcs: [ 16 "core/src/main/**/*.java", 17 "webserver/src/main/**/*.java", 18 ], 19 sdk_version: "current", 20 } 21