Searched defs:rule (Results 1 - 10 of 10) sorted by relevance

/build/kati/testcase/
H A Dnot_command_with_tab.mk11 rule:=bar: macro
12 $(rule)
/build/core/
H A Dsdk_font.mk47 # Define a macro to create rule for addititional fonts that we want to include
51 define sdk-extra-font-rule
63 $(eval $(call sdk-extra-font-rule,NanumGothic.ttf,external/naver-fonts/NanumGothic.ttf))
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbackFull.ttf))
66 sdk-extra-font-rule :=
H A Ddefinitions.mk129 define gcno-touch-rule
696 # Get the dependency files (you can put on the right side of "|" of a build rule)
848 ## Use echo-(warning|error) in a build rule
1102 ## Given a .aidl file path, generate the rule to compile it a .java file
1108 define define-aidl-java-rule
1109 define-aidl-java-rule-src := $(patsubst %.aidl,%.java,$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1110 $$(define-aidl-java-rule-src) : $(LOCAL_PATH)/$(1) $(AIDL)
1112 $(3) += $$(define-aidl-java-rule-src)
1115 ## Given a .aidl file path generate the rule to compile it a .cpp file.
1121 define define-aidl-cpp-rule
[all...]
H A Dmain.mk839 # 1. The COMMON rule for Java libraries
840 # 2. The jni_link_type rule for embedded native code
853 define link-type-file-rule
873 $(eval $(call link-type-file-rule,$(lt))))
/build/make/core/
H A Dsdk_font.mk47 # Define a macro to create rule for addititional fonts that we want to include
51 define sdk-extra-font-rule
63 $(eval $(call sdk-extra-font-rule,NanumGothic.ttf,external/naver-fonts/NanumGothic.ttf))
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbackFull.ttf))
66 sdk-extra-font-rule :=
H A Ddefinitions.mk129 define gcno-touch-rule
696 # Get the dependency files (you can put on the right side of "|" of a build rule)
848 ## Use echo-(warning|error) in a build rule
1102 ## Given a .aidl file path, generate the rule to compile it a .java file
1108 define define-aidl-java-rule
1109 define-aidl-java-rule-src := $(patsubst %.aidl,%.java,$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1110 $$(define-aidl-java-rule-src) : $(LOCAL_PATH)/$(1) $(AIDL)
1112 $(3) += $$(define-aidl-java-rule-src)
1115 ## Given a .aidl file path generate the rule to compile it a .cpp file.
1121 define define-aidl-cpp-rule
[all...]
H A Dmain.mk839 # 1. The COMMON rule for Java libraries
840 # 2. The jni_link_type rule for embedded native code
853 define link-type-file-rule
873 $(eval $(call link-type-file-rule,$(lt))))
/build/kati/
H A Drule.cc17 #include "rule.h"
91 // "test: =foo" is questionable but a valid rule definition (not a
114 Rule* rule = new Rule(); local
115 *out_rule = rule;
116 rule->loc = loc;
117 rule->is_double_colon = is_double_colon;
119 rule->output_patterns.swap(outputs);
121 rule->outputs.swap(outputs);
126 rule->cmds.push_back(
133 ParseInputs(rule, res
[all...]
H A Deval.cc28 #include "rule.h"
175 Error("*** missing rule before commands.");
179 Rule* rule; local
184 ParseRule(loc_, expr, stmt->term, after_term_fn, &rule, &rule_var);
186 if (rule) {
188 rule->cmds.push_back(stmt->after_term);
191 for (Symbol o : rule->outputs) {
196 LOG("Rule: %s", rule->DebugString().c_str());
197 rules_.push_back(rule);
198 last_rule_ = rule;
[all...]
H A Ddep.cc30 #include "rule.h"
76 Entry(const Rule* r, StringPiece s) : rule(r), suffix(s) {}
77 const Rule* rule; member in struct:__anon2::RuleTrie::Entry
88 void Add(StringPiece name, const Rule* rule) { argument
90 rules_.push_back(Entry(rule, name));
98 p.first->second->Add(name.substr(1), rule);
105 rules->push_back(ent.rule);
134 // suffix rule.
406 for (const Rule* rule : rules) {
407 if (rule
437 PopulateSuffixRule(const Rule* rule, Symbol output) argument
454 PopulateExplicitRule(const Rule* rule) argument
464 IsIgnorableImplicitRule(const Rule* rule) argument
478 PopulateImplicitRule(const Rule* rule) argument
500 CanPickImplicitRule(const Rule* rule, Symbol output, DepNode* n, shared_ptr<Rule>* out_rule) argument
[all...]

Completed in 47 milliseconds