| 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/run_chromium_analysis', | 12 '../../../../../bin/run_chromium_perf', |
| 13 ], | 13 ], |
| 14 'command': [ | 14 'command': [ |
| 15 '../../../../../bin/run_chromium_analysis', | 15 '../../../../../bin/run_chromium_perf', |
| 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_nopatch=<(CHROMIUM_BUILD_NOPATCH)', |
| 21 '--chromium_build_withpatch=<(CHROMIUM_BUILD_WITHPATCH)', |
| 21 '--run_id=<(RUN_ID)', | 22 '--run_id=<(RUN_ID)', |
| 22 '--benchmark_name=<(BENCHMARK)', | 23 '--benchmark_name=<(BENCHMARK)', |
| 23 '--benchmark_extra_args=<(BENCHMARK_ARGS)', | 24 '--benchmark_extra_args=<(BENCHMARK_ARGS)', |
| 24 '--browser_extra_args=<(BROWSER_EXTRA_ARGS)', | 25 '--browser_extra_args_nopatch=<(BROWSER_EXTRA_ARGS_NOPATCH)', |
| 26 '--browser_extra_args_withpatch=<(BROWSER_EXTRA_ARGS_WITHPATCH)', |
| 27 '--repeat_benchmark=<(REPEAT_BENCHMARK)', |
| 28 '--run_in_parallel=<(RUN_IN_PARALLEL)', |
| 29 '--target_platform=<(TARGET_PLATFORM)', |
| 25 ], | 30 ], |
| 26 }, | 31 }, |
| 27 }], | 32 }], |
| 28 ] | 33 ] |
| 29 } | 34 } |
| OLD | NEW |