Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: Makefile

Issue 11498006: Revert 13157, 13145 and 13140: Crankshaft code stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 GYPFLAGS += -Dv8_enable_extra_checks=0 74 GYPFLAGS += -Dv8_enable_extra_checks=0
75 endif 75 endif
76 # gdbjit=on 76 # gdbjit=on
77 ifeq ($(gdbjit), on) 77 ifeq ($(gdbjit), on)
78 GYPFLAGS += -Dv8_enable_gdbjit=1 78 GYPFLAGS += -Dv8_enable_gdbjit=1
79 endif 79 endif
80 # liveobjectlist=on 80 # liveobjectlist=on
81 ifeq ($(liveobjectlist), on) 81 ifeq ($(liveobjectlist), on)
82 GYPFLAGS += -Dv8_use_liveobjectlist=true 82 GYPFLAGS += -Dv8_use_liveobjectlist=true
83 endif 83 endif
84 # vfp2=off
85 ifeq ($(vfp2), off)
86 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false
87 else
88 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true
89 endif
90 # vfp3=off 84 # vfp3=off
91 ifeq ($(vfp3), off) 85 ifeq ($(vfp3), off)
92 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false 86 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false
93 else 87 else
94 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true 88 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true
95 endif 89 endif
96 # debuggersupport=off 90 # debuggersupport=off
97 ifeq ($(debuggersupport), off) 91 ifeq ($(debuggersupport), off)
98 GYPFLAGS += -Dv8_enable_debugger_support=0 92 GYPFLAGS += -Dv8_enable_debugger_support=0
99 endif 93 endif
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 # Stores current GYPFLAGS in a file. 281 # Stores current GYPFLAGS in a file.
288 $(ENVFILE).new: 282 $(ENVFILE).new:
289 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ 283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \
290 echo "CXX=$(CXX)" >> $(ENVFILE).new 284 echo "CXX=$(CXX)" >> $(ENVFILE).new
291 285
292 # Dependencies. 286 # Dependencies.
293 # Remember to keep these in sync with the DEPS file. 287 # Remember to keep these in sync with the DEPS file.
294 dependencies: 288 dependencies:
295 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
296 --revision 1501 290 --revision 1501
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698