diff options
author | Elliott Hughes <enh@google.com> | 2018-05-29 23:59:50 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-05-29 23:59:50 +0000 |
commit | d580c441ab45a6b7278da003e19af64e9ea2cc71 (patch) | |
tree | 552abfafdbd95cc05f0e06500409bbf382348258 /init/action_parser.cpp | |
parent | 420fe5fe9010081cbe61774ac661c0d5e7f09114 (diff) | |
parent | dc803126283444431c0d06f0386eddada0fe6b77 (diff) |
Merge "libbase: add host properties support."
Diffstat (limited to 'init/action_parser.cpp')
-rw-r--r-- | init/action_parser.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/init/action_parser.cpp b/init/action_parser.cpp index a2c96718b..f9b96eb5e 100644 --- a/init/action_parser.cpp +++ b/init/action_parser.cpp @@ -16,13 +16,12 @@ #include "action_parser.h" +#include <android-base/properties.h> #include <android-base/strings.h> #include "stable_properties.h" -#if defined(__ANDROID__) -#include <android-base/properties.h> -#else +#if !defined(__ANDROID__) #include "host_init_stubs.h" #endif |