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

Side by Side Diff: Makefile

Issue 10824032: Enables V8 integration with the Intel VTune performance analysis tool. This allows the VTune profi… (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 5 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 | SConstruct » ('j') | src/assembler.h » ('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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 GYPFLAGS += -Dv8_object_print=1 58 GYPFLAGS += -Dv8_object_print=1
59 endif 59 endif
60 # snapshot=off 60 # snapshot=off
61 ifeq ($(snapshot), off) 61 ifeq ($(snapshot), off)
62 GYPFLAGS += -Dv8_use_snapshot='false' 62 GYPFLAGS += -Dv8_use_snapshot='false'
63 endif 63 endif
64 # gdbjit=on 64 # gdbjit=on
65 ifeq ($(gdbjit), on) 65 ifeq ($(gdbjit), on)
66 GYPFLAGS += -Dv8_enable_gdbjit=1 66 GYPFLAGS += -Dv8_enable_gdbjit=1
67 endif 67 endif
68 # vtunejit=on
69 ifeq ($(vtunejit), on)
70 GYPFLAGS += -Dv8_enable_vtunejit=1
71 endif
68 # liveobjectlist=on 72 # liveobjectlist=on
69 ifeq ($(liveobjectlist), on) 73 ifeq ($(liveobjectlist), on)
70 GYPFLAGS += -Dv8_use_liveobjectlist=true 74 GYPFLAGS += -Dv8_use_liveobjectlist=true
71 endif 75 endif
72 # vfp3=off 76 # vfp3=off
73 ifeq ($(vfp3), off) 77 ifeq ($(vfp3), off)
74 GYPFLAGS += -Dv8_can_use_vfp_instructions=false 78 GYPFLAGS += -Dv8_can_use_vfp_instructions=false
75 else 79 else
76 GYPFLAGS += -Dv8_can_use_vfp_instructions=true 80 GYPFLAGS += -Dv8_can_use_vfp_instructions=true
77 endif 81 endif
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 262
259 # Stores current GYPFLAGS in a file. 263 # Stores current GYPFLAGS in a file.
260 $(ENVFILE).new: 264 $(ENVFILE).new:
261 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ 265 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \
262 echo "CXX=$(CXX)" >> $(ENVFILE).new 266 echo "CXX=$(CXX)" >> $(ENVFILE).new
263 267
264 # Dependencies. 268 # Dependencies.
265 dependencies: 269 dependencies:
266 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 270 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
267 --revision 1282 271 --revision 1282
OLDNEW
« no previous file with comments | « no previous file | SConstruct » ('j') | src/assembler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698