You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			460 B
		
	
	
	
		
			Protocol Buffer
		
	
			
		
		
	
	
			15 lines
		
	
	
		
			460 B
		
	
	
	
		
			Protocol Buffer
		
	
// Copyright 2019 The Chromium Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
syntax = "proto3";
 | 
						|
package recipe_modules.depot_tools.presubmit;
 | 
						|
 | 
						|
message InputProperties {
 | 
						|
  // Whether gclient hooks should be run when setting up the checkout.
 | 
						|
  bool runhooks = 1;
 | 
						|
  // Timeout for presubmit execution, in seconds.
 | 
						|
  // Defaults to 480s (8 minutes).
 | 
						|
  int32 timeout_s = 2;
 | 
						|
}
 |