| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Specifies how to launch the gatekeeper.""" | 5 """Specifies how to launch the gatekeeper.""" |
| 6 | 6 |
| 7 def GetFactoryProperties(api, _factory_properties, build_properties): | 7 def GetFactoryProperties(api, _factory_properties, build_properties): |
| 8 steps = api.Steps(build_properties) | 8 steps = api.Steps(build_properties) |
| 9 return { | 9 return { |
| 10 'steps': [ | 10 'steps': [ |
| 11 steps.step('gatekeeper_launch', | 11 steps.step('gatekeeper_launch', |
| 12 api.build_path('scripts', 'slave', 'gatekeeper_launch.py')) | 12 [api.build_path('scripts', 'slave', 'gatekeeper_launch.py')]) |
| 13 ] | 13 ] |
| 14 } | 14 } |
| OLD | NEW |