| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'py.isolate', | 7 'py.isolate', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS=="linux"', { | 10 ['OS=="linux"', { |
| 11 'variables': { | 11 'variables': { |
| 12 'files': [ | 12 'files': [ |
| 13 '../../../../../bin/create_pagesets', | 13 '../../../../../bin/build_repo', |
| 14 ], | 14 ], |
| 15 'command': [ | 15 'command': [ |
| 16 '../../../../../bin/create_pagesets', | 16 '../../../../../bin/build_repo', |
| 17 '-logtostderr', | 17 '-logtostderr', |
| 18 '--start_range=<(START_RANGE)', | 18 '--run_id=<(RUN_ID)', |
| 19 '--num=<(NUM)', | 19 '--repo=<(REPO)', |
| 20 '--pageset_type=<(PAGESET_TYPE)', | 20 '--hashes=<(HASHES)', |
| 21 '--patches=<(PATCHES)', |
| 22 '--single_build=<(SINGLE_BUILD)', |
| 23 '--target_platform=<(TARGET_PLATFORM)', |
| 24 '--out=${ISOLATED_OUTDIR}', |
| 21 ], | 25 ], |
| 22 }, | 26 }, |
| 23 }], | 27 }], |
| 24 ] | 28 ] |
| 25 } | 29 } |
| OLD | NEW |