blob: d5a33f65136c8adf31d7167454ec6524b8d1755c [file] [log] [blame]
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -08001// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Tim Klein60415f62019-05-14 00:08:58 +010015cc_library {
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080016 name: "libbcc",
Tim Klein60415f62019-05-14 00:08:58 +010017 vendor_available: true,
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080018 host_supported: true,
19 defaults: ["libbcc-defaults"],
20
21 srcs: [
22 "BCCContext.cpp",
23 "BCCContextImpl.cpp",
24 "Compiler.cpp",
25 "CompilerConfig.cpp",
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080026 "FileBase.cpp",
27 "Initialization.cpp",
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080028 "RSAddDebugInfoPass.cpp",
29 "RSCompilerDriver.cpp",
30 "RSEmbedInfo.cpp",
31 "RSGlobalInfoPass.cpp",
32 "RSInvariant.cpp",
33 "RSInvokeHelperPass.cpp",
34 "RSIsThreadablePass.cpp",
35 "RSKernelExpand.cpp",
36 "RSScreenFunctionsPass.cpp",
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080037 "RSScriptGroupFusion.cpp",
38 "RSStubsWhiteList.cpp",
39 "RSX86CallConvPass.cpp",
40 "RSX86TranslateGEPPass.cpp",
41 "Script.cpp",
42 "Source.cpp",
43 ],
44
45 shared_libs: ["libbcinfo"],
46
David Gross97e50992017-03-29 20:52:30 +000047 header_libs: ["slang_headers"],
48
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080049 target: {
50 windows: {
51 enabled: true,
Pirama Arumuga Nainarfbc576f2017-08-03 11:40:21 -070052 shared_libs: ["libLLVM_android"],
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080053 },
54 darwin: {
Pirama Arumuga Nainarfbc576f2017-08-03 11:40:21 -070055 shared_libs: ["libLLVM_android"],
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080056 },
Dan Willemsen06a22ed2017-10-02 10:41:10 -070057 linux_glibc: {
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080058 static_libs: ["libLLVMLinker"],
59 allow_undefined_symbols: true,
60 },
61 host: {
62 static_libs: [
63 "libutils",
64 "libcutils",
65 "liblog",
66 ],
67 },
68 android: {
69 shared_libs: [
Pirama Arumuga Nainarfbc576f2017-08-03 11:40:21 -070070 "libLLVM_android",
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080071 "libdl",
Jean-Luc Brouilleta2dd52f2017-02-16 20:57:26 -080072 "liblog",
73 ],
74 },
75 },
76
77 product_variables: {
78 unbundled_build: {
79 // Don't build in unbundled branches
80 enabled: false,
81 },
82 },
83}