/build/kati/ |
pack.sh | 19 make kati ckati 21 rm -fr out/kati 22 mkdir out/kati 23 git archive --prefix src/ master | tar -C out/kati -xvf - 25 cd out/kati 27 cp ../../m2n ../../kati ../../ckati . 29 tar -cvzf ../kati.tgz kati
|
Makefile | 17 include Makefile.kati
|
m2n | 17 # A wrapper for kati which generates build.ninja mainly for Android. 41 kati=${kati_dir}/kati 43 ${kati} --m2n "$@" 88 kati=${kati_dir}/ckati 117 ${kati} --ninja ${ninja_suffix_flag} --ignore_optional_include=out/%.P --ignore_dirty=out/% --use_find_emulator --detect_android_echo --detect_depfiles --gen_all_targets ${goma_flag} ${extra_flags} ${targets}
|
doc.go | 16 Package kati provides GNU make compatible functions, especially 20 package kati package
|
flags.go | 15 package kati package 17 // Flags to control kati.
|
bootstrap.go | 15 package kati package 30 MAKE?=kati 33 KATI?=kati
|
version.go | 15 package kati package
|
log.go | 15 package kati package
|
symtab.go | 15 package kati package
|
runtest.rb | 51 files.reject!{|f|f =~ /^kati\.*/} 143 # Normalization for "include foo" with C++ kati. 151 # kati specific log messages. 152 output.gsub!(/^\*kati\*.*\n/, '') 153 output.gsub!(/^c?kati: /, '') 160 output.gsub!(/ (\.\/+)+kati\.\S+/, '') # kati log files in find_command.mk 162 # Normalization for "include foo" with Go kati. 227 cmd = "../../kati -save_json=#{json}.json -log_dir=. --use_find_emulator" 264 File.open('out.kati', 'w'){|ofile|ofile.print(output) [all...] |
buf_test.go | 15 package kati package
|
fileutil.go | 15 package kati package
|
func_test.go | 15 package kati package
|
query.go | 15 package kati package
|
shellutil_test.go | 15 package kati package
|
exec.go | 15 package kati package 199 fmt.Printf("kati: Nothing to be done for `%s'.\n", root.Output)
|
stats.go | 15 package kati package
|
ast.go | 15 package kati package
|
buf.go | 15 package kati package
|
depgraph.go | 15 package kati package
|
/build/kati/testcase/ |
kati_cache.sh | 33 if ! grep -q 'Cache not found' kati.INFO; then 41 if ! grep -q 'Cache found' kati.INFO; then 53 if ! grep -q 'Cache expired' kati.INFO; then
|
ninja_regen_find_link.sh | 26 if echo "${mk}" | grep kati > /dev/null; then
|
gen_testcase_parse_benchmark.go | 29 const preamble = `package kati
|
/build/kati/cmd/kati/ |
main.go | 30 "github.com/google/kati" 93 flag.BoolVar(&kati.StatsFlag, "kati_stats", false, "Show a bunch of statistics") 94 flag.BoolVar(&kati.PeriodicStatsFlag, "kati_periodic_stats", false, "Show a bunch of periodic statistics") 95 flag.BoolVar(&kati.EvalStatsFlag, "kati_eval_stats", false, "Show eval statistics") 97 flag.BoolVar(&kati.DryRunFlag, "n", false, "Only print the commands that would be executed") 100 flag.BoolVar(&kati.UseFindEmulator, "use_find_emulator", false, "use find emulator") 101 flag.BoolVar(&kati.UseShellBuiltins, "use_shell_builtins", true, "Use shell builtins") 102 flag.StringVar(&kati.IgnoreOptionalInclude, "ignore_optional_include", "", "If specified, skip reading -include directives start with the specified path.") 129 func load(req kati.LoadReq) (*kati.DepGraph, error) [all...] |
/build/core/ |
ninja.mk | 10 KATI ?= $(HOST_OUT_EXECUTABLES)/ckati 20 # A list of goals which affect parsing of makefiles and we need to pass to Kati. 73 ANDROID_GOALS := $(filter-out $(KATI_OUTPUT_PATTERNS) $(KATI) $(MAKEPARALLEL),\ 77 # Goals we need to pass to Kati. 151 # Dummy Android.mk and CleanSpec.mk files so that kati won't recurse into the 162 $(KATI_BUILD_NINJA): $(KATI) $(MAKEPARALLEL) $(DUMMY_OUT_MKS) $(SOONG_ANDROID_MK) FORCE 163 @echo Running kati to generate build$(KATI_NINJA_SUFFIX).ninja... 164 +$(hide) $(KATI_MAKEPARALLEL) $(KATI) --ninja --ninja_dir=$(OUT_DIR) --ninja_suffix=$(KATI_NINJA_SUFFIX) --regen --ignore_dirty=$(OUT_DIR)/% --no_ignore_dirty=$(SOONG_ANDROID_MK) --ignore_optional_include=$(OUT_DIR)/%.P --detect_android_echo $(KATI_FIND_EMULATOR) -f build/core/main.mk $(KATI_GOALS) --gen_all_targets BUILDING_WITH_NINJA=true SOONG_ANDROID_MK=$(SOONG_ANDROID_MK) 177 include build/kati/Makefile.ckati
|