Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd48697d authored by Bob Badour's avatar Bob Badour
Browse files

[LSC] Add LOCAL_LICENSE_KINDS to packages/modules/NetworkStack

Added SPDX-license-identifier-Apache-2.0 to:
  Android.bp
  common/captiveportal/Android.bp
  common/moduleutils/Android.bp
  common/netlinkclient/Android.bp
  common/networkstackclient/Android.bp
  tests/hostdriven/Android.bp
  tests/hostlib/Android.bp
  tests/integration/Android.bp
  tests/unit/Android.bp
  tests/unit/jni/Android.bp

Bug: 68860345
Bug: 151177513
Bug: 151953481

Test: m all

Exempt-From-Owner-Approval: janitorial work

Change-Id: Ibab1582903754c2e835aad531085976776168d04
Merged-in: Id83c0d73f18a0efd8263951773222737e59cbc31
parent f5962f27
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -41,6 +41,10 @@
//                                                         TestNetworkStack

// Common defaults to define SDK level
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

java_defaults {
    name: "NetworkStackDevApiLevel",
    min_sdk_version: "29",
+5 −1
Original line number Diff line number Diff line
@@ -14,6 +14,10 @@
// limitations under the License.
//

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

java_library {
    name: "captiveportal-lib",
    srcs: ["src/**/*.java"],
+4 −0
Original line number Diff line number Diff line
@@ -17,6 +17,10 @@
// Shared utility sources to be used by multiple network modules
// TODO: remove all frameworks/base dependencies on packages/modules/NetworkStack and
// frameworks/base/packages/Tethering by moving these files to frameworks/libs/net.
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

filegroup {
    name: "net-module-utils-srcs",
    srcs: [
+4 −0
Original line number Diff line number Diff line
@@ -14,6 +14,10 @@
// limitations under the License.
//

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

java_library {
    name: "netlink-client",
    srcs: [
+4 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@
//

// AIDL interfaces between the core system and the networking mainline module.
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

aidl_interface {
    name: "ipmemorystore-aidl-interfaces",
    local_include_dir: "src",
Loading