blob: a661c6c286ade8b2f651eaf524cf81e4ad9bc798 [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 }
38 return nil
39 })
40
41 callSubAndroidMk := func(obj interface{}) {
42 if obj != nil {
43 if androidmk, ok := obj.(interface {
Colin Cross635c3b02016-05-18 15:37:25 -070044 AndroidMk(*android.AndroidMkData)
Colin Crossca860ac2016-01-04 14:34:37 -080045 }); ok {
46 androidmk.AndroidMk(&ret)
47 }
48 }
49 }
50
51 for _, feature := range c.features {
52 callSubAndroidMk(feature)
53 }
54
55 callSubAndroidMk(c.compiler)
56 callSubAndroidMk(c.linker)
Colin Crossc99deeb2016-04-11 15:06:20 -070057 if c.linker.installable() {
58 callSubAndroidMk(c.installer)
59 }
Colin Crossca860ac2016-01-04 14:34:37 -080060
61 return ret, nil
62}
63
Colin Cross635c3b02016-05-18 15:37:25 -070064func (library *baseLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -080065 if library.static() {
Dan Willemsen218f6562015-07-08 18:13:11 -070066 ret.Class = "STATIC_LIBRARIES"
67 } else {
68 ret.Class = "SHARED_LIBRARIES"
69 }
Colin Crossca860ac2016-01-04 14:34:37 -080070}
71
Colin Cross635c3b02016-05-18 15:37:25 -070072func (library *libraryLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -080073 library.baseLinker.AndroidMk(ret)
74
Colin Cross635c3b02016-05-18 15:37:25 -070075 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsen3b1fffa2016-05-05 15:11:48 -070076 var exportedIncludes []string
Colin Crossca860ac2016-01-04 14:34:37 -080077 for _, flag := range library.exportedFlags() {
Dan Willemsen3b1fffa2016-05-05 15:11:48 -070078 if strings.HasPrefix(flag, "-I") {
Dan Willemsen97750522016-02-09 17:43:51 -080079 exportedIncludes = append(exportedIncludes, strings.TrimPrefix(flag, "-I"))
80 }
Dan Willemsen218f6562015-07-08 18:13:11 -070081 }
82 if len(exportedIncludes) > 0 {
Dan Willemsen97750522016-02-09 17:43:51 -080083 fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DIRS :=", strings.Join(exportedIncludes, " "))
Dan Willemsen218f6562015-07-08 18:13:11 -070084 }
85
Colin Crossca860ac2016-01-04 14:34:37 -080086 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
Dan Willemsen218f6562015-07-08 18:13:11 -070087
88 // These are already included in LOCAL_SHARED_LIBRARIES
Dan Willemsen97750522016-02-09 17:43:51 -080089 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
90 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
Dan Willemsen218f6562015-07-08 18:13:11 -070091
Dan Willemsen97750522016-02-09 17:43:51 -080092 return nil
Colin Crossca860ac2016-01-04 14:34:37 -080093 })
Dan Willemsen218f6562015-07-08 18:13:11 -070094}
95
Colin Cross635c3b02016-05-18 15:37:25 -070096func (object *objectLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsen97750522016-02-09 17:43:51 -080097 ret.Custom = func(w io.Writer, name, prefix string) error {
Colin Crossca860ac2016-01-04 14:34:37 -080098 out := ret.OutputFile.Path()
Dan Willemsen218f6562015-07-08 18:13:11 -070099
Dan Willemsen97750522016-02-09 17:43:51 -0800100 fmt.Fprintln(w, "\n$("+prefix+"OUT_INTERMEDIATE_LIBRARIES)/"+name+objectExtension+":", out.String(), "| $(ACP)")
101 fmt.Fprintln(w, "\t$(copy-file-to-target)")
102
103 return nil
Dan Willemsen218f6562015-07-08 18:13:11 -0700104 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700105}
106
Colin Cross635c3b02016-05-18 15:37:25 -0700107func (binary *binaryLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsen218f6562015-07-08 18:13:11 -0700108 ret.Class = "EXECUTABLES"
Colin Cross635c3b02016-05-18 15:37:25 -0700109 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsen97750522016-02-09 17:43:51 -0800110 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
111 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
Dan Willemsen97750522016-02-09 17:43:51 -0800112 return nil
Colin Crossca860ac2016-01-04 14:34:37 -0800113 })
114}
115
Colin Cross635c3b02016-05-18 15:37:25 -0700116func (test *testLinker) AndroidMk(ret *android.AndroidMkData) {
Colin Crossa2344662016-03-24 13:14:12 -0700117 test.binaryLinker.AndroidMk(ret)
118 if Bool(test.Properties.Test_per_src) {
119 ret.SubName = test.binaryLinker.Properties.Stem
120 }
121}
122
Colin Cross635c3b02016-05-18 15:37:25 -0700123func (library *toolchainLibraryLinker) AndroidMk(ret *android.AndroidMkData) {
Dan Willemsene7932e82016-05-16 15:56:53 -0700124 library.baseLinker.AndroidMk(ret)
125
Colin Cross635c3b02016-05-18 15:37:25 -0700126 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Dan Willemsene7932e82016-05-16 15:56:53 -0700127 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
128 fmt.Fprintln(w, "LOCAL_CXX_STL := none")
129 fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
130
131 return nil
132 })
133}
134
Colin Cross635c3b02016-05-18 15:37:25 -0700135func (installer *baseInstaller) AndroidMk(ret *android.AndroidMkData) {
136 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
Colin Crossa2344662016-03-24 13:14:12 -0700137 path := installer.path.RelPathString()
Colin Crossbf305de2016-03-29 17:32:06 -0700138 dir, file := filepath.Split(path)
139 stem := strings.TrimSuffix(file, filepath.Ext(file))
Colin Crosse14388b2016-05-03 14:08:40 -0700140 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
Colin Crossbf305de2016-03-29 17:32:06 -0700141 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700142 return nil
143 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700144}