• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2018 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
17cc_defaults {
18    name: "native_bridge_stub_library_defaults",
19    cflags: [
20        "-Wall",
21        "-Werror",
22        "-Wextra",
23        "-Wover-aligned",
24        "-Wunused",
25    ],
26
27    shared_libs: [
28        "libnative_bridge_vdso",
29    ],
30
31    // TODO(b/24465209): keep stub libraries old loader-compatible.
32    ldflags: [
33        "-Wl,--hash-style=both",
34    ],
35    pack_relocations: false,
36
37    enabled: false,
38    target: {
39       native_bridge: {
40           enabled: true,
41       }
42    },
43
44    native_bridge_supported: true,
45    compile_multilib: "both",
46}
47