| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 $(OUTDIR)/$(1)$(HOST_EXT): $(OUTDIR)/$(2)$(HOST_EXT) | 158 $(OUTDIR)/$(1)$(HOST_EXT): $(OUTDIR)/$(2)$(HOST_EXT) |
| 159 $(call LOG,STRIP,$$@,$(STRIP) --strip-debug -o $$@ $$^) | 159 $(call LOG,STRIP,$$@,$(STRIP) --strip-debug -o $$@ $$^) |
| 160 endef | 160 endef |
| 161 | 161 |
| 162 | 162 |
| 163 # | 163 # |
| 164 # Run standalone builds (command line builds outside of chrome) | 164 # Run standalone builds (command line builds outside of chrome) |
| 165 # | 165 # |
| 166 ifdef STANDALONE | 166 ifdef STANDALONE |
| 167 run: all | 167 run: all |
| 168 » $(OUTDIR)/$(TARGET)$(HOST_EXT) $(EXE_ARGS) | 168 » $(RUN_UNDER) $(OUTDIR)/$(TARGET)$(HOST_EXT) $(EXE_ARGS) |
| 169 endif | 169 endif |
| OLD | NEW |