Home | History | Annotate | Download | only in build

Lines Matching defs:host

97 # For the host, also add the installed tool (in the base size, that should suffice). For the
369 # Define make rules for a host gtests.
372 define define-art-gtest-rule-host
373 gtest_rule := test-art-host-gtest-$(1)$$($(2)ART_PHONY_TEST_HOST_SUFFIX)
375 # Dependencies for all host gtests.
406 endef # define-art-gtest-rule-host
408 # Define the rules to build and run host and target gtests.
409 # $(1): target or host
415 ifneq ($(1),host)
416 $$(error expected target or host for argument 1, received $(1))
441 ifneq ($$(HOST_OS)-$$(art_target_or_host),darwin-host)
484 else # host
487 LOCAL_SHARED_LIBRARIES += libicuuc-host libicui18n-host libnativehelper libziparchive-host libz-host libvixld
499 $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),2ND_))
501 $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),))
504 .PHONY: test-art-host-gtest-$$(art_gtest_name)
505 test-art-host-gtest-$$(art_gtest_name): $$(ART_TEST_HOST_GTEST_$$(art_gtest_name)_RULES)
508 .PHONY: valgrind-test-art-host-gtest-$$(art_gtest_name)
509 valgrind-test-art-host-gtest-$$(art_gtest_name): $$(ART_TEST_HOST_VALGRIND_GTEST_$$(art_gtest_name)_RULES)
532 $(foreach file,$(RUNTIME_GTEST_HOST_SRC_FILES), $(eval $(call define-art-gtest,host,$(file),,libbacktrace)))
533 $(foreach file,$(COMPILER_GTEST_HOST_SRC_FILES), $(eval $(call define-art-gtest,host,$(file),art/compiler,libartd-compiler libbacktrace)))
542 # Define all the combinations of host/target, valgrind and suffix such as:
543 # test-art-host-gtest or valgrind-test-art-host-gtest64
544 # $(1): host or target
545 # $(2): HOST or TARGET
549 ifeq ($(1),host)
550 ifneq ($(2),HOST)
555 $$(error found $(1) expected host or target)
564 ifneq ($(1),host)
565 $$(error valgrind tests only wired up for the host)
586 $(eval $(call define-test-art-gtest-combination,host,HOST,,))
587 $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,))
588 $(eval $(call define-test-art-gtest-combination,host,HOST,,$(ART_PHONY_TEST_HOST_SUFFIX)))
589 $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,$(ART_PHONY_TEST_HOST_SUFFIX)))
591 $(eval $(call define-test-art-gtest-combination,host,HOST,,$(2ND_ART_PHONY_TEST_HOST_SUFFIX)))
592 $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,$(2ND_ART_PHONY_TEST_HOST_SUFFIX)))
597 define-art-gtest-rule-host :=