2015-01-31 02:27:36 +01: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.
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
package android
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
import (
|
2015-03-23 20:57:34 +01:00
|
|
|
"github.com/google/blueprint"
|
2015-07-15 23:34:02 +02:00
|
|
|
_ "github.com/google/blueprint/bootstrap"
|
2015-01-31 02:27:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-04-03 01:14:11 +02:00
|
|
|
pctx = NewPackageContext("android/soong/android")
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
cpPreserveSymlinks = pctx.VariableConfigMethod("cpPreserveSymlinks",
|
|
|
|
Config.CpPreserveSymlinksFlags)
|
|
|
|
|
|
|
|
// A phony rule that is not the built-in Ninja phony rule. The built-in
|
|
|
|
// phony rule has special behavior that is sometimes not desired. See the
|
|
|
|
// Ninja docs for more details.
|
2016-08-30 01:14:13 +02:00
|
|
|
Phony = pctx.AndroidStaticRule("Phony",
|
2015-01-31 02:27:36 +01:00
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "# phony $out",
|
|
|
|
Description: "phony $out",
|
|
|
|
})
|
|
|
|
|
|
|
|
// GeneratedFile is a rule for indicating that a given file was generated
|
|
|
|
// while running soong. This allows the file to be cleaned up if it ever
|
|
|
|
// stops being generated by soong.
|
2016-08-30 01:14:13 +02:00
|
|
|
GeneratedFile = pctx.AndroidStaticRule("GeneratedFile",
|
2015-01-31 02:27:36 +01:00
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "# generated $out",
|
|
|
|
Description: "generated $out",
|
|
|
|
Generator: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
// A copy rule.
|
2016-08-30 01:14:13 +02:00
|
|
|
Cp = pctx.AndroidStaticRule("Cp",
|
2015-01-31 02:27:36 +01:00
|
|
|
blueprint.RuleParams{
|
2017-07-26 23:09:50 +02:00
|
|
|
Command: "rm -f $out && cp $cpPreserveSymlinks $cpFlags $in $out",
|
2015-01-31 02:27:36 +01:00
|
|
|
Description: "cp $out",
|
|
|
|
},
|
|
|
|
"cpFlags")
|
|
|
|
|
2017-08-31 21:29:17 +02:00
|
|
|
CpExecutable = pctx.AndroidStaticRule("CpExecutable",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "rm -f $out && cp $cpPreserveSymlinks $cpFlags $in $out && chmod +x $out",
|
|
|
|
Description: "cp $out",
|
|
|
|
},
|
|
|
|
"cpFlags")
|
|
|
|
|
2016-07-19 07:29:52 +02:00
|
|
|
// A timestamp touch rule.
|
2016-08-30 01:14:13 +02:00
|
|
|
Touch = pctx.AndroidStaticRule("Touch",
|
2016-07-19 07:29:52 +02:00
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "touch $out",
|
|
|
|
Description: "touch $out",
|
|
|
|
})
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
// A symlink rule.
|
2016-08-30 01:14:13 +02:00
|
|
|
Symlink = pctx.AndroidStaticRule("Symlink",
|
2015-01-31 02:27:36 +01:00
|
|
|
blueprint.RuleParams{
|
2020-09-23 06:30:02 +02:00
|
|
|
Command: "rm -f $out && ln -f -s $fromPath $out",
|
|
|
|
Description: "symlink $out",
|
|
|
|
SymlinkOutputs: []string{"$out"},
|
2015-01-31 02:27:36 +01:00
|
|
|
},
|
|
|
|
"fromPath")
|
2015-12-18 01:39:19 +01:00
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
ErrorRule = pctx.AndroidStaticRule("Error",
|
2015-12-18 01:39:19 +01:00
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `echo "$error" && false`,
|
|
|
|
Description: "error building $out",
|
|
|
|
},
|
|
|
|
"error")
|
2016-08-30 01:14:13 +02:00
|
|
|
|
2016-10-20 10:36:11 +02:00
|
|
|
Cat = pctx.AndroidStaticRule("Cat",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "cat $in > $out",
|
|
|
|
Description: "concatenate licenses $out",
|
|
|
|
})
|
|
|
|
|
2017-05-12 23:02:13 +02:00
|
|
|
// ubuntu 14.04 offcially use dash for /bin/sh, and its builtin echo command
|
|
|
|
// doesn't support -e option. Therefore we force to use /bin/bash when writing out
|
|
|
|
// content to file.
|
2017-03-28 23:54:55 +02:00
|
|
|
WriteFile = pctx.AndroidStaticRule("WriteFile",
|
|
|
|
blueprint.RuleParams{
|
2017-05-12 23:02:13 +02:00
|
|
|
Command: "/bin/bash -c 'echo -e $$0 > $out' '$content'",
|
2017-03-28 23:54:55 +02:00
|
|
|
Description: "writing file $out",
|
|
|
|
},
|
|
|
|
"content")
|
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
// Used only when USE_GOMA=true is set, to restrict non-goma jobs to the local parallelism value
|
|
|
|
localPool = blueprint.NewBuiltinPool("local_pool")
|
2019-11-15 22:18:43 +01:00
|
|
|
|
2020-04-01 04:14:52 +02:00
|
|
|
// Used only by RuleBuilder to identify remoteable rules. Does not actually get created in ninja.
|
|
|
|
remotePool = blueprint.NewBuiltinPool("remote_pool")
|
|
|
|
|
2019-11-15 22:18:43 +01:00
|
|
|
// Used for processes that need significant RAM to ensure there are not too many running in parallel.
|
|
|
|
highmemPool = blueprint.NewBuiltinPool("highmem_pool")
|
2015-01-31 02:27:36 +01:00
|
|
|
)
|
2015-07-15 23:34:02 +02:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
pctx.Import("github.com/google/blueprint/bootstrap")
|
|
|
|
}
|