File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,13 @@ aidl_library {
105105
106106cc_library_headers {
107107 name : " libandroid_headers_private" ,
108+ host_supported : true ,
108109 export_include_dirs : [" include/private" ],
110+ target : {
111+ windows : {
112+ enabled : true ,
113+ },
114+ },
109115}
110116
111117filegroup {
Original file line number Diff line number Diff line change 4848#ifndef ANDROID_CHOREOGRAPHER_H
4949#define ANDROID_CHOREOGRAPHER_H
5050
51+ #include <stddef.h>
5152#include <stdint.h>
5253#include <sys/cdefs.h>
5354
55+ // This file may also be built on glibc or on Windows/MacOS libc's, so no-op
56+ // and deprecated definitions are provided.
57+ #if !defined(__INTRODUCED_IN )
58+ #define __INTRODUCED_IN (__api_level ) /* nothing */
59+ #endif
60+ #if !defined(__DEPRECATED_IN )
61+ #define __DEPRECATED_IN (__api_level ) __attribute__((__deprecated__))
62+ #endif
63+
5464__BEGIN_DECLS
5565
5666struct AChoreographer ;
You can’t perform that action at this time.
0 commit comments