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

Side by Side Diff: Makefile

Issue 11574031: Intel VTune integration for V8/D8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 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 | build/common.gypi » ('j') | build/common.gypi » ('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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 ifeq ($(extrachecks), on) 76 ifeq ($(extrachecks), on)
77 GYPFLAGS += -Dv8_enable_extra_checks=1 77 GYPFLAGS += -Dv8_enable_extra_checks=1
78 endif 78 endif
79 ifeq ($(extrachecks), off) 79 ifeq ($(extrachecks), off)
80 GYPFLAGS += -Dv8_enable_extra_checks=0 80 GYPFLAGS += -Dv8_enable_extra_checks=0
81 endif 81 endif
82 # gdbjit=on 82 # gdbjit=on
83 ifeq ($(gdbjit), on) 83 ifeq ($(gdbjit), on)
84 GYPFLAGS += -Dv8_enable_gdbjit=1 84 GYPFLAGS += -Dv8_enable_gdbjit=1
85 endif 85 endif
86 # vtunejit=on
87 ifeq ($(vtunejit), on)
88 GYPFLAGS += -Dv8_enable_vtunejit=1
89 endif
86 # vfp2=off 90 # vfp2=off
87 ifeq ($(vfp2), off) 91 ifeq ($(vfp2), off)
88 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false 92 GYPFLAGS += -Dv8_can_use_vfp2_instructions=false
89 else 93 else
90 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true -Darm_fpu=vfpv2 94 GYPFLAGS += -Dv8_can_use_vfp2_instructions=true -Darm_fpu=vfpv2
91 endif 95 endif
92 # vfp3=off 96 # vfp3=off
93 ifeq ($(vfp3), off) 97 ifeq ($(vfp3), off)
94 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false 98 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false
95 else 99 else
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 # Stores current GYPFLAGS in a file. 297 # Stores current GYPFLAGS in a file.
294 $(ENVFILE).new: 298 $(ENVFILE).new:
295 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ 299 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \
296 echo "CXX=$(CXX)" >> $(ENVFILE).new 300 echo "CXX=$(CXX)" >> $(ENVFILE).new
297 301
298 # Dependencies. 302 # Dependencies.
299 # Remember to keep these in sync with the DEPS file. 303 # Remember to keep these in sync with the DEPS file.
300 dependencies: 304 dependencies:
301 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 305 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
302 --revision 1501 306 --revision 1501
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698