| 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 'includes': [ | 5 'includes': [ |
| 6 'py.isolate', | 6 'py.isolate', |
| 7 ], | 7 ], |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
| 10 'variables': { | 10 'variables': { |
| 11 'files': [ | 11 'files': [ |
| 12 '../../../../../bin/capture_skps_from_pdfs', | 12 '../../../../../bin/run_chromium_analysis', |
| 13 ], | 13 ], |
| 14 'command': [ | 14 'command': [ |
| 15 '../../../../../bin/capture_skps_from_pdfs', | 15 '../../../../../bin/run_chromium_analysis', |
| 16 '-logtostderr', | 16 '-logtostderr', |
| 17 '--start_range=<(START_RANGE)', | 17 '--start_range=<(START_RANGE)', |
| 18 '--num=<(NUM)', | 18 '--num=<(NUM)', |
| 19 '--pageset_type=<(PAGESET_TYPE)', | 19 '--pageset_type=<(PAGESET_TYPE)', |
| 20 '--chromium_build=<(CHROMIUM_BUILD)', | 20 '--chromium_build=<(CHROMIUM_BUILD)', |
| 21 '--run_id=<(RUN_ID)' | 21 '--run_id=<(RUN_ID)', |
| 22 '--benchmark_name=<(BENCHMARK)', |
| 23 '--benchmark_extra_args=<(BENCHMARK_ARGS)', |
| 24 '--browser_extra_args=<(BROWSER_EXTRA_ARGS)', |
| 22 ], | 25 ], |
| 23 }, | 26 }, |
| 24 }], | 27 }], |
| 25 ] | 28 ] |
| 26 } | 29 } |
| OLD | NEW |