blob: 499736dce413a494aafde7c33b4fc4cc871aff77 [file] [log] [blame]
Dan Willemsen218f6562015-07-08 18:13:11 -07001// Copyright 2015 Google Inc. All rights reserved.
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
15package cc
16
17import (
Dan Willemsen97750522016-02-09 17:43:51 -080018 "fmt"
Dan Willemsen218f6562015-07-08 18:13:11 -070019 "io"
Colin Crossa2344662016-03-24 13:14:12 -070020 "path/filepath"
Dan Willemsen218f6562015-07-08 18:13:11 -070021 "strings"
22
Colin Cross635c3b02016-05-18 15:37:25 -070023 "android/soong/android"
Dan Willemsen218f6562015-07-08 18:13:11 -070024)
25
Colin Cross635c3b02016-05-18 15:37:25 -070026func (c *Module) AndroidMk() (ret android.AndroidMkData, err error) {
Colin Crossbc6fb162016-05-24 15:39:04 -070027 if c.Properties.HideFromMake {
28 ret.Disabled = true
29 return ret, nil
30 }
31
Colin Crossca860ac2016-01-04 14:34:37 -080032 ret.OutputFile = c.outputFile
Colin Cross635c3b02016-05-18 15:37:25 -070033 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) (err error) {
Colin Cross30d5f512016-05-03 18:02:42 -070034 fmt.Fprintln(w, "LOCAL_SANITIZE := never")
Colin Crossc99deeb2016-04-11 15:06:20 -070035 if len(c.Properties.AndroidMkSharedLibs) > 0 {
36 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(c.Properties.AndroidMkSharedLibs, " "))
Colin Crossca860ac2016-01-04 14:34:37 -080037 }
Dan Willemsena96ff642016-06-07 12:34:45 -070038 if c.Target().Os == android.Android && c.Properties.Sdk_version != "" {
39 fmt.Fprintln(w, "LOCAL_SDK_VERSION := "+c.Properties.Sdk_version)
40 fmt.Fprintln(w, "LOCAL_NDK_STL_VARIANT := none")
41 } else {
42 // These are already included in LOCAL_SHARED_LIBRARIES
43 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
44 }
Colin Crossca860ac2016-01-04 14:34:37 -080045 return nil
46 })
47
48 callSubAndroidMk := func(obj interface{}) {
49 if obj != nil {
50 if androidmk, ok := obj.(interface {
Colin Cross635c3b02016-05-18 15:37:25 -070051 AndroidMk(*android.AndroidMkData)
Colin Crossca860ac2016-01-04 14:34:37 -080052 }); ok {
53 androidmk.AndroidMk(&ret)
54 }
55 }
56 }
57
58 for _, feature := range c.features {
59 callSubAndroidMk(feature)
60 }
61
62 callSubAndroidMk(c.compiler)
63 callSubAndroidMk(c.linker)
Colin Crossc99deeb2016-04-11 15:06:20 -070064 if c.linker.installable() {
65 callSubAndroidMk(c.installer)
66 }
Colin Crossca860ac2016-01-04 14:34:37 -080067
68 return ret, nil
69}
70
Colin Cross635c3b02016-05-18 15:37:25 -070071func (library *baseLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -080072 if library.static() {
Dan Willemsen218f6562015-07-08 18:13:11 -070073 ret.Class = "STATIC_LIBRARIES"
74 } else {
75 ret.Class = "SHARED_LIBRARIES"
76 }
Colin Crossca860ac2016-01-04 14:34:37 -080077}
78
Colin Cross635c3b02016-05-18 15:37:25 -070079func (library *libraryLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -080080 library.baseLinker.AndroidMk(ret)
81
Dan Willemsen7517ed02016-06-10 17:20:30 -070082 library.stripper.AndroidMk(ret)
83
Colin Cross635c3b02016-05-18 15:37:25 -070084 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsen3b1fffa2016-05-05 15:11:48 -070085 var exportedIncludes []string
Colin Crossca860ac2016-01-04 14:34:37 -080086 for _, flag := range library.exportedFlags() {
Dan Willemsen3b1fffa2016-05-05 15:11:48 -070087 if strings.HasPrefix(flag, "-I") {
Dan Willemsen97750522016-02-09 17:43:51 -080088 exportedIncludes = append(exportedIncludes, strings.TrimPrefix(flag, "-I"))
89 }
Dan Willemsen218f6562015-07-08 18:13:11 -070090 }
91 if len(exportedIncludes) > 0 {
Dan Willemsen97750522016-02-09 17:43:51 -080092 fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DIRS :=", strings.Join(exportedIncludes, " "))
Dan Willemsen218f6562015-07-08 18:13:11 -070093 }
94
Colin Crossca860ac2016-01-04 14:34:37 -080095 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
Dan Willemsen218f6562015-07-08 18:13:11 -070096
Dan Willemsen97750522016-02-09 17:43:51 -080097 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
Dan Willemsen218f6562015-07-08 18:13:11 -070098
Dan Willemsen97750522016-02-09 17:43:51 -080099 return nil
Colin Crossca860ac2016-01-04 14:34:37 -0800100 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700101}
102
Colin Cross635c3b02016-05-18 15:37:25 -0700103func (object *objectLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsen97750522016-02-09 17:43:51 -0800104 ret.Custom = func(w io.Writer, name, prefix string) error {
Colin Crossca860ac2016-01-04 14:34:37 -0800105 out := ret.OutputFile.Path()
Dan Willemsen218f6562015-07-08 18:13:11 -0700106
Dan Willemsen97750522016-02-09 17:43:51 -0800107 fmt.Fprintln(w, "\n$("+prefix+"OUT_INTERMEDIATE_LIBRARIES)/"+name+objectExtension+":", out.String(), "| $(ACP)")
108 fmt.Fprintln(w, "\t$(copy-file-to-target)")
109
110 return nil
Dan Willemsen218f6562015-07-08 18:13:11 -0700111 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700112}
113
Colin Cross635c3b02016-05-18 15:37:25 -0700114func (binary *binaryLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsen7517ed02016-06-10 17:20:30 -0700115 binary.stripper.AndroidMk(ret)
116
Dan Willemsen218f6562015-07-08 18:13:11 -0700117 ret.Class = "EXECUTABLES"
Colin Cross635c3b02016-05-18 15:37:25 -0700118 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsen97750522016-02-09 17:43:51 -0800119 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
120 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
Dan Willemsen97750522016-02-09 17:43:51 -0800121 return nil
Colin Crossca860ac2016-01-04 14:34:37 -0800122 })
123}
124
Colin Cross635c3b02016-05-18 15:37:25 -0700125func (test *testLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossa2344662016-03-24 13:14:12 -0700126 test.binaryLinker.AndroidMk(ret)
127 if Bool(test.Properties.Test_per_src) {
128 ret.SubName = test.binaryLinker.Properties.Stem
129 }
130}
131
Colin Cross635c3b02016-05-18 15:37:25 -0700132func (library *toolchainLibraryLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsene7932e82016-05-16 15:56:53 -0700133 library.baseLinker.AndroidMk(ret)
134
Colin Cross635c3b02016-05-18 15:37:25 -0700135 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsene7932e82016-05-16 15:56:53 -0700136 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
137 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
138 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
139
140 return nil
141 })
142}
143
Dan Willemsen7517ed02016-06-10 17:20:30 -0700144func (stripper *stripper) AndroidMk(ret *android.AndroidMkData) {
145 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
146 if stripper.StripProperties.Strip.None {
147 fmt.Fprintln(w, "LOCAL_STRIP_MODULE := false")
148 } else if stripper.StripProperties.Strip.Keep_symbols {
149 fmt.Fprintln(w, "LOCAL_STRIP_MODULE := keep_symbols")
150 }
151
152 return nil
153 })
154}
155
Colin Cross635c3b02016-05-18 15:37:25 -0700156func (installer *baseInstaller) AndroidMk(ret *android.AndroidMkData) {
157 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Colin Crossa2344662016-03-24 13:14:12 -0700158 path := installer.path.RelPathString()
Colin Crossbf305de2016-03-29 17:32:06 -0700159 dir, file := filepath.Split(path)
160 stem := strings.TrimSuffix(file, filepath.Ext(file))
Colin Crosse14388b2016-05-03 14:08:40 -0700161 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
Colin Crossbf305de2016-03-29 17:32:06 -0700162 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700163 return nil
164 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700165}