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

Side by Side Diff: Makefile

Issue 9546051: Fix compile with debuggersupport=off. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 months 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/d8.gyp » ('j') | test/mjsunit/regress/regress-1229.js » ('J')
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 GYPFLAGS += -Dv8_enable_gdbjit=1 66 GYPFLAGS += -Dv8_enable_gdbjit=1
67 endif 67 endif
68 # liveobjectlist=on 68 # liveobjectlist=on
69 ifeq ($(liveobjectlist), on) 69 ifeq ($(liveobjectlist), on)
70 GYPFLAGS += -Dv8_use_liveobjectlist=true 70 GYPFLAGS += -Dv8_use_liveobjectlist=true
71 endif 71 endif
72 # vfp3=off 72 # vfp3=off
73 ifeq ($(vfp3), off) 73 ifeq ($(vfp3), off)
74 GYPFLAGS += -Dv8_can_use_vfp_instructions=false 74 GYPFLAGS += -Dv8_can_use_vfp_instructions=false
75 else 75 else
76 GYPFLAGS += -Dv8_can_use_vfp_instructions=true 76 GYPFLAGS += -Dv8_can_use_vfp_instructions=true
Yang 2012/03/07 10:47:41 @Jakob: Is there any reason why we have true/false
77 endif 77 endif
78 # debuggersupport=off
79 ifeq ($(debuggersupport), off)
80 GYPFLAGS += -Dv8_enable_debugger_support=0
81 endif
78 # soname_version=1.2.3 82 # soname_version=1.2.3
79 ifdef soname_version 83 ifdef soname_version
80 GYPFLAGS += -Dsoname_version=$(soname_version) 84 GYPFLAGS += -Dsoname_version=$(soname_version)
81 endif 85 endif
82 # werror=no 86 # werror=no
83 ifeq ($(werror), no) 87 ifeq ($(werror), no)
84 GYPFLAGS += -Dwerror='' 88 GYPFLAGS += -Dwerror=''
85 endif 89 endif
86 # presubmit=no 90 # presubmit=no
87 ifeq ($(presubmit), no) 91 ifeq ($(presubmit), no)
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 else mv $(ENVFILE).new $(ENVFILE); fi 254 else mv $(ENVFILE).new $(ENVFILE); fi
251 255
252 # Stores current GYPFLAGS in a file. 256 # Stores current GYPFLAGS in a file.
253 $(ENVFILE).new: 257 $(ENVFILE).new:
254 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; 258 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new;
255 259
256 # Dependencies. 260 # Dependencies.
257 dependencies: 261 dependencies:
258 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 262 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
259 --revision 1026 263 --revision 1026
OLDNEW
« no previous file with comments | « no previous file | src/d8.gyp » ('j') | test/mjsunit/regress/regress-1229.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698