| OLD | NEW |
| 1 # Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # GNU Makefile based on shared rules provided by the Native Client SDK. | 5 # GNU Makefile based on shared rules provided by the Native Client SDK. |
| 6 # See README.Makefiles for more details. | 6 # See README.Makefiles for more details. |
| 7 | 7 |
| 8 # In order to build with newlib by default change "pnacl newlib" to | 8 # In order to build with newlib by default change "pnacl newlib" to |
| 9 # "newlib pnacl" or use make VAILD_TOOLCHAINS=newlib. | 9 # "newlib pnacl" or use make VAILD_TOOLCHAINS=newlib. |
| 10 VALID_TOOLCHAINS := pnacl newlib | 10 VALID_TOOLCHAINS := pnacl newlib |
| 11 | 11 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 $(RUN_PY) -C $(CURDIR) -P $(TEST_PAGE_CONFIG) \ | 77 $(RUN_PY) -C $(CURDIR) -P $(TEST_PAGE_CONFIG) \ |
| 78 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH_ESCAPE) \ | 78 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH_ESCAPE) \ |
| 79 $(CHROME_ARGS) --disable-setuid-sandbox \ | 79 $(CHROME_ARGS) --disable-setuid-sandbox \ |
| 80 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" | 80 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" |
| 81 | 81 |
| 82 # Run Debug tests. Every rule that contains "debug" will build and use the | 82 # Run Debug tests. Every rule that contains "debug" will build and use the |
| 83 # debug executables (see #line 113 from $NACL_SDK_ROOT/tools/common.mk with | 83 # debug executables (see #line 113 from $NACL_SDK_ROOT/tools/common.mk with |
| 84 # findstring). | 84 # findstring). |
| 85 .PHONY: debug_tests_run | 85 .PHONY: debug_tests_run |
| 86 debug_tests_run: tests_run | 86 debug_tests_run: tests_run |
| OLD | NEW |