OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # | 5 # |
6 # GNU Make based build file. For details on GNU Make see: | 6 # GNU Make based build file. For details on GNU Make see: |
7 # http://www.gnu.org/software/make/manual/make.html | 7 # http://www.gnu.org/software/make/manual/make.html |
8 # | 8 # |
9 | 9 |
10 # | 10 # |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 .PHONY: run | 469 .PHONY: run |
470 run: check_for_chrome all $(PAGE) | 470 run: check_for_chrome all $(PAGE) |
471 $(RUN_PY) -C $(CURDIR) -P $(PAGE_TC_CONFIG) \ | 471 $(RUN_PY) -C $(CURDIR) -P $(PAGE_TC_CONFIG) \ |
472 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH) $(CHROME_ARGS) \ | 472 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH) $(CHROME_ARGS) \ |
473 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" | 473 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" |
474 | 474 |
475 .PHONY: run_package | 475 .PHONY: run_package |
476 run_package: check_for_chrome all | 476 run_package: check_for_chrome all |
477 $(CHROME_PATH) --load-and-launch-app=$(CURDIR) $(CHROME_ARGS) | 477 $(CHROME_PATH) --load-and-launch-app=$(CURDIR) $(CHROME_ARGS) |
478 | 478 |
479 | 479 GDB_ARGS += -D $(TC_PATH)/$(OSNAME)_x86_newlib/bin/$(SYSARCH)-nacl-gdb |
480 GDB_ARGS += -D $(TC_PATH)/$(OSNAME)_x86_$(TOOLCHAIN)/bin/$(SYSARCH)-nacl-gdb | |
481 GDB_ARGS += -D --eval-command="nacl-manifest $(abspath $(OUTDIR))/$(TARGET).nmf" | 480 GDB_ARGS += -D --eval-command="nacl-manifest $(abspath $(OUTDIR))/$(TARGET).nmf" |
482 GDB_ARGS += -D $(GDB_DEBUG_TARGET) | 481 GDB_ARGS += -D $(GDB_DEBUG_TARGET) |
483 | 482 |
484 .PHONY: debug | 483 .PHONY: debug |
485 debug: check_for_chrome all $(PAGE) | 484 debug: check_for_chrome all $(PAGE) |
486 $(RUN_PY) $(GDB_ARGS) \ | 485 $(RUN_PY) $(GDB_ARGS) \ |
487 -C $(CURDIR) -P $(PAGE_TC_CONFIG) \ | 486 -C $(CURDIR) -P $(PAGE_TC_CONFIG) \ |
488 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH) $(CHROME_ARGS) \ | 487 $(addprefix -E ,$(CHROME_ENV)) -- $(CHROME_PATH) $(CHROME_ARGS) \ |
489 --enable-nacl-debug \ | 488 --enable-nacl-debug \ |
490 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" | 489 --register-pepper-plugins="$(PPAPI_DEBUG),$(PPAPI_RELEASE)" |
491 endif | 490 endif |
492 | 491 |
493 | 492 |
494 # uppercase aliases (for backward compatibility) | 493 # uppercase aliases (for backward compatibility) |
495 .PHONY: CHECK_FOR_CHROME DEBUG LAUNCH RUN | 494 .PHONY: CHECK_FOR_CHROME DEBUG LAUNCH RUN |
496 CHECK_FOR_CHROME: check_for_chrome | 495 CHECK_FOR_CHROME: check_for_chrome |
497 DEBUG: debug | 496 DEBUG: debug |
498 LAUNCH: run | 497 LAUNCH: run |
499 RUN: run | 498 RUN: run |
500 | 499 |
501 endif # TOOLCHAIN is valid... | 500 endif # TOOLCHAIN is valid... |
502 | 501 |
503 endif # TOOLCHAIN=all | 502 endif # TOOLCHAIN=all |
OLD | NEW |