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

Side by Side Diff: Makefile

Issue 1805903002: [serializer] Add API to warm up startup snapshot with an additional script. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix comment Created 4 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
« no previous file with comments | « no previous file | include/v8.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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ifeq ($(asan), on) 155 ifeq ($(asan), on)
156 GYPFLAGS += -Dasan=1 -Dclang=1 156 GYPFLAGS += -Dasan=1 -Dclang=1
157 TESTFLAGS += --asan 157 TESTFLAGS += --asan
158 ifeq ($(lsan), on) 158 ifeq ($(lsan), on)
159 GYPFLAGS += -Dlsan=1 159 GYPFLAGS += -Dlsan=1
160 endif 160 endif
161 endif 161 endif
162 ifdef embedscript 162 ifdef embedscript
163 GYPFLAGS += -Dembed_script=$(embedscript) 163 GYPFLAGS += -Dembed_script=$(embedscript)
164 endif 164 endif
165 ifdef warmupscript
166 GYPFLAGS += -Dwarmup_script=$(warmupscript)
167 endif
165 ifeq ($(goma), on) 168 ifeq ($(goma), on)
166 GYPFLAGS += -Duse_goma=1 169 GYPFLAGS += -Duse_goma=1
167 endif 170 endif
168 # arm specific flags. 171 # arm specific flags.
169 # arm_version=<number | "default"> 172 # arm_version=<number | "default">
170 ifneq ($(strip $(arm_version)),) 173 ifneq ($(strip $(arm_version)),)
171 GYPFLAGS += -Darm_version=$(arm_version) 174 GYPFLAGS += -Darm_version=$(arm_version)
172 else 175 else
173 # Deprecated (use arm_version instead): armv7=false/true 176 # Deprecated (use arm_version instead): armv7=false/true
174 ifeq ($(armv7), false) 177 ifeq ($(armv7), false)
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 # We need to manually set the stack limit here, to work around bugs in 498 # We need to manually set the stack limit here, to work around bugs in
496 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. 499 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems.
497 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) 500 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null)
498 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' 501 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<'
499 502
500 gtags.clean: 503 gtags.clean:
501 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS 504 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS
502 505
503 dependencies builddeps: 506 dependencies builddeps:
504 $(error Use 'gclient sync' instead) 507 $(error Use 'gclient sync' instead)
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698