| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 | 386 |
| 387 # GYP file generation targets. | 387 # GYP file generation targets. |
| 388 OUT_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(BUILDS)) | 388 OUT_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(BUILDS)) |
| 389 $(OUT_MAKEFILES): $(GYPFILES) $(ENVFILE) | 389 $(OUT_MAKEFILES): $(GYPFILES) $(ENVFILE) |
| 390 PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \ | 390 PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \ |
| 391 PYTHONPATH="$(shell pwd)/build/gyp/pylib:$(PYTHONPATH)" \ | 391 PYTHONPATH="$(shell pwd)/build/gyp/pylib:$(PYTHONPATH)" \ |
| 392 GYP_GENERATORS=make \ | 392 GYP_GENERATORS=make \ |
| 393 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \ | 393 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \ |
| 394 -Ibuild/standalone.gypi --depth=. \ | 394 -Ibuild/standalone.gypi --depth=. \ |
| 395 -Dv8_target_arch=$(subst .,,$(suffix $(basename $@))) \ | 395 -Dv8_target_arch=$(subst .,,$(suffix $(basename $@))) \ |
| 396 » -Dv8_optimized_debug=$(if $(findstring optdebug,$@),2,0) \ | 396 » $(if $(findstring optdebug,$@),-Dv8_optimized_debug=2,) \ |
| 397 -S$(suffix $(basename $@))$(suffix $@) $(GYPFLAGS) | 397 -S$(suffix $(basename $@))$(suffix $@) $(GYPFLAGS) |
| 398 | 398 |
| 399 $(OUTDIR)/Makefile.native: $(GYPFILES) $(ENVFILE) | 399 $(OUTDIR)/Makefile.native: $(GYPFILES) $(ENVFILE) |
| 400 PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \ | 400 PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \ |
| 401 PYTHONPATH="$(shell pwd)/build/gyp/pylib:$(PYTHONPATH)" \ | 401 PYTHONPATH="$(shell pwd)/build/gyp/pylib:$(PYTHONPATH)" \ |
| 402 GYP_GENERATORS=make \ | 402 GYP_GENERATORS=make \ |
| 403 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \ | 403 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \ |
| 404 -Ibuild/standalone.gypi --depth=. -S.native $(GYPFLAGS) | 404 -Ibuild/standalone.gypi --depth=. -S.native $(GYPFLAGS) |
| 405 | 405 |
| 406 must-set-ANDROID_NDK_ROOT_OR_TOOLCHAIN: | 406 must-set-ANDROID_NDK_ROOT_OR_TOOLCHAIN: |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE) | 441 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE) |
| 442 | 442 |
| 443 # Dependencies. | 443 # Dependencies. |
| 444 # Remember to keep these in sync with the DEPS file. | 444 # Remember to keep these in sync with the DEPS file. |
| 445 dependencies: | 445 dependencies: |
| 446 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 446 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
| 447 --revision 1831 | 447 --revision 1831 |
| 448 svn checkout --force \ | 448 svn checkout --force \ |
| 449 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ | 449 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ |
| 450 third_party/icu --revision 239289 | 450 third_party/icu --revision 239289 |
| OLD | NEW |