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

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 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 | SConstruct » ('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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ifeq ($(extrachecks), on) 70 ifeq ($(extrachecks), on)
71 GYPFLAGS += -Dv8_enable_extra_checks=1 71 GYPFLAGS += -Dv8_enable_extra_checks=1
72 endif 72 endif
73 ifeq ($(extrachecks), off) 73 ifeq ($(extrachecks), off)
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 # vtunejit=on
81 ifeq ($(vtunejit), on)
Jakob Kummerow 2012/12/21 12:50:59 nit: indentation
82 GYPFLAGS += -Dv8_enable_vtunejit=1
Jakob Kummerow 2012/12/21 12:50:59 nit: indentation
83 endif
80 # liveobjectlist=on 84 # liveobjectlist=on
81 ifeq ($(liveobjectlist), on) 85 ifeq ($(liveobjectlist), on)
82 GYPFLAGS += -Dv8_use_liveobjectlist=true 86 GYPFLAGS += -Dv8_use_liveobjectlist=true
83 endif 87 endif
84 # vfp3=off 88 # vfp3=off
85 ifeq ($(vfp3), off) 89 ifeq ($(vfp3), off)
86 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false 90 GYPFLAGS += -Dv8_can_use_vfp3_instructions=false
87 else 91 else
88 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true 92 GYPFLAGS += -Dv8_can_use_vfp3_instructions=true
89 endif 93 endif
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 # Stores current GYPFLAGS in a file. 285 # Stores current GYPFLAGS in a file.
282 $(ENVFILE).new: 286 $(ENVFILE).new:
283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ 287 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \
284 echo "CXX=$(CXX)" >> $(ENVFILE).new 288 echo "CXX=$(CXX)" >> $(ENVFILE).new
285 289
286 # Dependencies. 290 # Dependencies.
287 # Remember to keep these in sync with the DEPS file. 291 # Remember to keep these in sync with the DEPS file.
288 dependencies: 292 dependencies:
289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 293 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
290 --revision 1501 294 --revision 1501
OLDNEW
« no previous file with comments | « no previous file | SConstruct » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698