blob: 72ab6c0d27f1f8409e6261954b8558e4928b0f10 [file] [log] [blame]
Jiyong Parka5f914a2019-01-20 21:02:00 +09001//
2// Copyright (C) 2019 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17bionic_mountpoint {
18 name: "libc.mountpoint",
19 stem: "libc.so",
20 src: "dummy_mountpoint",
21 library: true,
22 symlinks: ["libc.so"],
Jiyong Parkacb4d212019-02-11 16:05:48 +090023 mountsource: "libc",
Jiyong Parka5f914a2019-01-20 21:02:00 +090024}
25
26bionic_mountpoint {
27 name: "libdl.mountpoint",
28 stem: "libdl.so",
29 src: "dummy_mountpoint",
30 library: true,
31 symlinks: ["libdl.so"],
Jiyong Parkacb4d212019-02-11 16:05:48 +090032 mountsource: "libdl",
Jiyong Parka5f914a2019-01-20 21:02:00 +090033}
34
35bionic_mountpoint {
36 name: "libm.mountpoint",
37 stem: "libm.so",
38 src: "dummy_mountpoint",
39 library: true,
40 symlinks: ["libm.so"],
Jiyong Parkacb4d212019-02-11 16:05:48 +090041 mountsource: "libm",
Jiyong Parka5f914a2019-01-20 21:02:00 +090042}
43
44bionic_mountpoint {
45 name: "linker.mountpoint",
46 stem: "linker",
47 multilib: {
48 lib64: {
49 suffix: "64",
50 },
51 },
52 src: "dummy_mountpoint",
53 binary: true,
54 symlinks: ["linker", "linker_asan"],
Jiyong Parkacb4d212019-02-11 16:05:48 +090055 mountsource: "linker",
Jiyong Parka5f914a2019-01-20 21:02:00 +090056}