@@ -10,7 +10,6 @@ load("@builtin//runtime.star", "runtime")
10
10
load ("@builtin//struct.star" , "module" )
11
11
load ("./backend_config/backend.star" , "backend" )
12
12
load ("./blink_all.star" , "blink_all" )
13
- load ("./config.star" , "config" )
14
13
load ("./gn_logs.star" , "gn_logs" )
15
14
load ("./linux.star" , chromium_linux = "chromium" )
16
15
load ("./mac.star" , chromium_mac = "chromium" )
@@ -29,13 +28,6 @@ def __disable_remote(ctx, step_config):
29
28
rule ["remote" ] = False
30
29
return step_config
31
30
32
- def __unset_timeout (ctx , step_config ):
33
- if not config .get (ctx , "no-remote-timeout" ):
34
- return step_config
35
- for rule in step_config ["rules" ]:
36
- rule .pop ("timeout" , None )
37
- return step_config
38
-
39
31
def init (ctx ):
40
32
print ("runtime: os:%s arch:%s run:%d" % (
41
33
runtime .os ,
@@ -88,7 +80,6 @@ def init(ctx):
88
80
rule ["remote_command" ] = arg0
89
81
90
82
step_config = __disable_remote (ctx , step_config )
91
- step_config = __unset_timeout (ctx , step_config )
92
83
93
84
filegroups = {}
94
85
filegroups .update (blink_all .filegroups (ctx ))
0 commit comments