Move selinux dependencies out of header files.

Bug: http://b/27764900
Change-Id: Ib62a59edcb13054f40f514c404d32b87b14ed5f1
This commit is contained in:
Elliott Hughes 2016-04-01 18:24:39 -07:00
parent 75da77105f
commit 4bbd5bf8a6
8 changed files with 18 additions and 11 deletions

View file

@ -14,6 +14,8 @@
* limitations under the License.
*/
#include "DirUtil.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
@ -26,7 +28,8 @@
#include <string>
#include "DirUtil.h"
#include <selinux/label.h>
#include <selinux/selinux.h>
typedef enum { DMISSING, DDIR, DILLEGAL } DirStatus;

View file

@ -24,8 +24,7 @@
extern "C" {
#endif
#include <selinux/selinux.h>
#include <selinux/label.h>
struct selabel_handle;
/* Like "mkdir -p", try to guarantee that all directories
* specified in path are present, creating as many directories

View file

@ -23,6 +23,9 @@
#undef NDEBUG // do this after including Log.h
#include <assert.h>
#include <selinux/label.h>
#include <selinux/selinux.h>
#define SORT_ENTRIES 1
/*

View file

@ -18,8 +18,7 @@
extern "C" {
#endif
#include <selinux/selinux.h>
#include <selinux/label.h>
struct selabel_handle;
/*
* One entry in the Zip archive. Treat this as opaque -- use accessors below.

View file

@ -41,10 +41,11 @@
#include <android-base/stringprintf.h>
#include <cutils/android_reboot.h>
#include <cutils/properties.h>
#include <healthd/BatteryMonitor.h>
#include <log/logger.h> /* Android Log packet format */
#include <private/android_logger.h> /* private pmsg functions */
#include <healthd/BatteryMonitor.h>
#include <selinux/label.h>
#include <selinux/selinux.h>
#include "adb_install.h"
#include "bootloader.h"

View file

@ -27,7 +27,6 @@
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <selinux/selinux.h>
#include <ftw.h>
#include <sys/capability.h>
#include <sys/xattr.h>
@ -40,6 +39,8 @@
#include <android-base/parseint.h>
#include <android-base/strings.h>
#include <android-base/stringprintf.h>
#include <selinux/label.h>
#include <selinux/selinux.h>
#include "bootloader.h"
#include "applypatch/applypatch.h"

View file

@ -27,6 +27,9 @@
#include "minzip/SysUtil.h"
#include "config.h"
#include <selinux/label.h>
#include <selinux/selinux.h>
// Generated by the makefile, this function defines the
// RegisterDeviceExtensions() function, which calls all the
// registration functions for device-specific extensions.

View file

@ -20,9 +20,6 @@
#include <stdio.h>
#include "minzip/Zip.h"
#include <selinux/selinux.h>
#include <selinux/label.h>
typedef struct {
FILE* cmd_pipe;
ZipArchive* package_zip;
@ -32,6 +29,7 @@ typedef struct {
size_t package_zip_len;
} UpdaterInfo;
struct selabel_handle;
extern struct selabel_handle *sehandle;
#endif