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

Commit c95a87f3 authored by Lorenzo Colitti's avatar Lorenzo Colitti
Browse files

DHCP: Move the packet code to frameworks/base/services.

There's no need for it to be in frameworks/base/core, since it
will only be used by services.

Bug: 19704592
Change-Id: I2f5277eca848b7000ca46db575e8602eacb5c8bd
parent 566e0cb6
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -24,6 +24,7 @@ services := \
    appwidget \
    appwidget \
    backup \
    backup \
    devicepolicy \
    devicepolicy \
    net \
    print \
    print \
    restrictions \
    restrictions \
    usage \
    usage \
+10 −0
Original line number Original line Diff line number Diff line
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := services.net

LOCAL_SRC_FILES += \
    $(call all-java-files-under,java)

include $(BUILD_STATIC_JAVA_LIBRARY)
Loading