File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -108,19 +108,14 @@ def run_gyp(args):
108
108
if __name__ == '__main__' :
109
109
args = sys .argv [1 :]
110
110
111
- gyp_chromium_no_action = os .environ .get ('GYP_CHROMIUM_NO_ACTION' )
112
- if gyp_chromium_no_action == '1' :
113
- print 'Skipping gyp_v8 due to GYP_CHROMIUM_NO_ACTION env var.'
111
+ gyp_chromium_no_action = os .environ .get ('GYP_CHROMIUM_NO_ACTION' , '1' )
112
+ if gyp_chromium_no_action != '0' :
113
+ print 'GYP is now disabled by default.\n '
114
+ print 'If you really want to run this, set the environment variable '
115
+ print 'GYP_CHROMIUM_NO_ACTION=0.'
114
116
sys .exit (0 )
115
117
116
118
running_as_hook = '--running-as-hook'
117
- if running_as_hook in args and gyp_chromium_no_action != '0' :
118
- print 'GYP is now disabled by default in runhooks.\n '
119
- print 'If you really want to run this, either run '
120
- print '`python gypfiles/gyp_v8` explicitly by hand '
121
- print 'or set the environment variable GYP_CHROMIUM_NO_ACTION=0.'
122
- sys .exit (0 )
123
-
124
119
if running_as_hook in args :
125
120
args .remove (running_as_hook )
126
121
Original file line number Diff line number Diff line change 11
11
#define V8_MAJOR_VERSION 6
12
12
#define V8_MINOR_VERSION 4
13
13
#define V8_BUILD_NUMBER 388
14
- #define V8_PATCH_LEVEL 44
14
+ #define V8_PATCH_LEVEL 45
15
15
16
16
// Use 1 for candidates and 0 otherwise.
17
17
// (Boolean macro values are not supported by all preprocessors.)
You can’t perform that action at this time.
0 commit comments