2015-07-09 03:13:11 +02:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package cc
|
|
|
|
|
|
|
|
import (
|
2016-02-10 02:43:51 +01:00
|
|
|
"fmt"
|
2015-07-09 03:13:11 +02:00
|
|
|
"io"
|
2016-03-24 21:14:12 +01:00
|
|
|
"path/filepath"
|
2015-07-09 03:13:11 +02:00
|
|
|
"strings"
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-07-09 03:13:11 +02:00
|
|
|
)
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (c *Module) AndroidMk() (ret android.AndroidMkData, err error) {
|
2016-01-04 23:34:37 +01:00
|
|
|
ret.OutputFile = c.outputFile
|
2016-05-19 00:37:25 +02:00
|
|
|
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) (err error) {
|
2016-05-04 03:02:42 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SANITIZE := never")
|
2016-04-12 00:06:20 +02:00
|
|
|
if len(c.Properties.AndroidMkSharedLibs) > 0 {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(c.Properties.AndroidMkSharedLibs, " "))
|
2016-01-04 23:34:37 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
callSubAndroidMk := func(obj interface{}) {
|
|
|
|
if obj != nil {
|
|
|
|
if androidmk, ok := obj.(interface {
|
2016-05-19 00:37:25 +02:00
|
|
|
AndroidMk(*android.AndroidMkData)
|
2016-01-04 23:34:37 +01:00
|
|
|
}); ok {
|
|
|
|
androidmk.AndroidMk(&ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, feature := range c.features {
|
|
|
|
callSubAndroidMk(feature)
|
|
|
|
}
|
|
|
|
|
|
|
|
callSubAndroidMk(c.compiler)
|
|
|
|
callSubAndroidMk(c.linker)
|
2016-04-12 00:06:20 +02:00
|
|
|
if c.linker.installable() {
|
|
|
|
callSubAndroidMk(c.installer)
|
|
|
|
}
|
2016-01-04 23:34:37 +01:00
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (library *baseLinker) AndroidMk(ret *android.AndroidMkData) {
|
2016-01-04 23:34:37 +01:00
|
|
|
if library.static() {
|
2015-07-09 03:13:11 +02:00
|
|
|
ret.Class = "STATIC_LIBRARIES"
|
|
|
|
} else {
|
|
|
|
ret.Class = "SHARED_LIBRARIES"
|
|
|
|
}
|
2016-01-04 23:34:37 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (library *libraryLinker) AndroidMk(ret *android.AndroidMkData) {
|
2016-01-04 23:34:37 +01:00
|
|
|
library.baseLinker.AndroidMk(ret)
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
|
2016-05-06 00:11:48 +02:00
|
|
|
var exportedIncludes []string
|
2016-01-04 23:34:37 +01:00
|
|
|
for _, flag := range library.exportedFlags() {
|
2016-05-06 00:11:48 +02:00
|
|
|
if strings.HasPrefix(flag, "-I") {
|
2016-02-10 02:43:51 +01:00
|
|
|
exportedIncludes = append(exportedIncludes, strings.TrimPrefix(flag, "-I"))
|
|
|
|
}
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
if len(exportedIncludes) > 0 {
|
2016-02-10 02:43:51 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DIRS :=", strings.Join(exportedIncludes, " "))
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
2016-01-04 23:34:37 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
|
2015-07-09 03:13:11 +02:00
|
|
|
|
|
|
|
// These are already included in LOCAL_SHARED_LIBRARIES
|
2016-02-10 02:43:51 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_CXX_STL := none")
|
|
|
|
fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
|
2015-07-09 03:13:11 +02:00
|
|
|
|
2016-02-10 02:43:51 +01:00
|
|
|
return nil
|
2016-01-04 23:34:37 +01:00
|
|
|
})
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (object *objectLinker) AndroidMk(ret *android.AndroidMkData) {
|
2016-02-10 02:43:51 +01:00
|
|
|
ret.Custom = func(w io.Writer, name, prefix string) error {
|
2016-01-04 23:34:37 +01:00
|
|
|
out := ret.OutputFile.Path()
|
2015-07-09 03:13:11 +02:00
|
|
|
|
2016-02-10 02:43:51 +01:00
|
|
|
fmt.Fprintln(w, "\n$("+prefix+"OUT_INTERMEDIATE_LIBRARIES)/"+name+objectExtension+":", out.String(), "| $(ACP)")
|
|
|
|
fmt.Fprintln(w, "\t$(copy-file-to-target)")
|
|
|
|
|
|
|
|
return nil
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (binary *binaryLinker) AndroidMk(ret *android.AndroidMkData) {
|
2015-07-09 03:13:11 +02:00
|
|
|
ret.Class = "EXECUTABLES"
|
2016-05-19 00:37:25 +02:00
|
|
|
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
|
2016-02-10 02:43:51 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_CXX_STL := none")
|
|
|
|
fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
|
|
|
|
return nil
|
2016-01-04 23:34:37 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (test *testLinker) AndroidMk(ret *android.AndroidMkData) {
|
2016-03-24 21:14:12 +01:00
|
|
|
test.binaryLinker.AndroidMk(ret)
|
|
|
|
if Bool(test.Properties.Test_per_src) {
|
|
|
|
ret.SubName = test.binaryLinker.Properties.Stem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (library *toolchainLibraryLinker) AndroidMk(ret *android.AndroidMkData) {
|
2016-05-17 00:56:53 +02:00
|
|
|
library.baseLinker.AndroidMk(ret)
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
|
2016-05-17 00:56:53 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+outputFile.Ext())
|
|
|
|
fmt.Fprintln(w, "LOCAL_CXX_STL := none")
|
|
|
|
fmt.Fprintln(w, "LOCAL_SYSTEM_SHARED_LIBRARIES :=")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func (installer *baseInstaller) AndroidMk(ret *android.AndroidMkData) {
|
|
|
|
ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error {
|
2016-03-24 21:14:12 +01:00
|
|
|
path := installer.path.RelPathString()
|
2016-03-30 02:32:06 +02:00
|
|
|
dir, file := filepath.Split(path)
|
|
|
|
stem := strings.TrimSuffix(file, filepath.Ext(file))
|
2016-05-03 23:08:40 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
|
2016-03-30 02:32:06 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
|
2016-03-24 21:14:12 +01:00
|
|
|
return nil
|
|
|
|
})
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|