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

Commit 93169e30 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge changes I896e0bc8,I27231c4f am: 00a2b1f4

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1653861

Change-Id: Ifa7d7ae638123ed7f8444729180a7d1b862f482c
parents 411d0777 00a2b1f4
Loading
Loading
Loading
Loading
+3 −5
Original line number Original line Diff line number Diff line
@@ -30,9 +30,7 @@ enum {
    FLAG_PRIVATE_VENDOR = 0x10000000,
    FLAG_PRIVATE_VENDOR = 0x10000000,
};
};


// TODO(b/180646847): __ANDROID_APEX__ here is what allows product partition to
#if defined(__ANDROID_VENDOR__)
// talk to system.
#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)


enum {
enum {
    FLAG_PRIVATE_LOCAL = FLAG_PRIVATE_VENDOR,
    FLAG_PRIVATE_LOCAL = FLAG_PRIVATE_VENDOR,
@@ -47,7 +45,7 @@ static inline void AIBinder_markCompilationUnitStability(AIBinder* binder) {
    AIBinder_markVendorStability(binder);
    AIBinder_markVendorStability(binder);
}
}


#else  // defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
#else  // defined(__ANDROID_VENDOR__)


enum {
enum {
    FLAG_PRIVATE_LOCAL = 0,
    FLAG_PRIVATE_LOCAL = 0,
@@ -64,7 +62,7 @@ static inline void AIBinder_markCompilationUnitStability(AIBinder* binder) {
    AIBinder_markSystemStability(binder);
    AIBinder_markSystemStability(binder);
}
}


#endif  // defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
#endif  // defined(__ANDROID_VENDOR__)


/**
/**
 * This interface has system<->vendor stability
 * This interface has system<->vendor stability