Add screen space opacity to opacity tree
[chromium-blink-merge.git] / native_client_sdk / src / Makefile
bloba258b1b46c1095564998f209f6b34e1240f91acd
1 COVERAGE_LIMIT=50
3 ifeq ($(QUICK),1)
4 TEST_ARGS?=--quick
5 endif
7 check:
8 python ../../third_party/pycoverage run ./test_all.py $(TEST_ARGS)
9 python ../../third_party/pycoverage report --fail-under=$(COVERAGE_LIMIT)
10 python ../../third_party/pycoverage html
12 .PHONY: check