Jiyong Park | a5f914a | 2019-01-20 21:02:00 +0900 | [diff] [blame] | 1 | // |
| 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 | |
| 17 | bionic_mountpoint { |
| 18 | name: "libc.mountpoint", |
| 19 | stem: "libc.so", |
| 20 | src: "dummy_mountpoint", |
| 21 | library: true, |
| 22 | symlinks: ["libc.so"], |
Jiyong Park | acb4d21 | 2019-02-11 16:05:48 +0900 | [diff] [blame] | 23 | mountsource: "libc", |
Jiyong Park | a5f914a | 2019-01-20 21:02:00 +0900 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | bionic_mountpoint { |
| 27 | name: "libdl.mountpoint", |
| 28 | stem: "libdl.so", |
| 29 | src: "dummy_mountpoint", |
| 30 | library: true, |
| 31 | symlinks: ["libdl.so"], |
Jiyong Park | acb4d21 | 2019-02-11 16:05:48 +0900 | [diff] [blame] | 32 | mountsource: "libdl", |
Jiyong Park | a5f914a | 2019-01-20 21:02:00 +0900 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | bionic_mountpoint { |
| 36 | name: "libm.mountpoint", |
| 37 | stem: "libm.so", |
| 38 | src: "dummy_mountpoint", |
| 39 | library: true, |
| 40 | symlinks: ["libm.so"], |
Jiyong Park | acb4d21 | 2019-02-11 16:05:48 +0900 | [diff] [blame] | 41 | mountsource: "libm", |
Jiyong Park | a5f914a | 2019-01-20 21:02:00 +0900 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | bionic_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 Park | acb4d21 | 2019-02-11 16:05:48 +0900 | [diff] [blame] | 55 | mountsource: "linker", |
Jiyong Park | a5f914a | 2019-01-20 21:02:00 +0900 | [diff] [blame] | 56 | } |