platform_system_core/libasyncio/Android.bp
Anna Trostanetski 56a712f6c9 Revert "Set apex_available property"
This reverts commit d25bb60e05.

Reason for revert: Breaks build_test b/152190149
Bug: 152190149

Change-Id: I6b7cb4aa4fc07fae648bcf4d9e8f60ea1c62fd9e
2020-03-23 12:02:53 +00:00

48 lines
1.2 KiB
Text

//
// Copyright (C) 2017 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
cc_defaults {
name: "libasyncio_defaults",
cflags: [
"-Wall",
"-Werror",
"-Wextra",
],
}
cc_library {
name: "libasyncio",
defaults: ["libasyncio_defaults"],
vendor_available: true,
recovery_available: true,
host_supported: true,
srcs: [
"AsyncIO.cpp",
],
export_include_dirs: ["include"],
target: {
darwin: {
enabled: false,
},
linux_bionic: {
enabled: true,
},
windows: {
enabled: false,
},
},
}