d97e52d888
Currently, for an API symbol to be accessible to APEXes, it needs to be marked as either # systemapi or # apex. It was originally just # apex, but we added # systemapi to clearly identify the origin of the APIs. The intended use is * #apex is for APEX-visible symbols that are defined in an APEX * #systemapi is for APEX-visible symbols that are defined in the platform (the non-updatable part) This intention is documented build/soong/docs/map_files.md, but isn't enforced at all. With b/239274367, this is now enforced and therefore the #apex tags in the platform library are replaced with `#systemapi` This change does not alter any functionality. Bug: 239274367 Test: m Change-Id: Ibdb9122c9969749e055404078bc2280edaa7346d
28 lines
872 B
Text
28 lines
872 B
Text
#
|
|
# Copyright 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.
|
|
#
|
|
|
|
LIBSYNC {
|
|
global:
|
|
sync_merge; # introduced=26
|
|
sync_file_info; # introduced=26
|
|
sync_file_info_free; # introduced=26
|
|
sync_wait; # llndk systemapi
|
|
sync_fence_info; # llndk
|
|
sync_pt_info; # llndk
|
|
sync_fence_info_free; # llndk
|
|
local:
|
|
*;
|
|
};
|