| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/zip.gni") | 6 import("//build/config/zip.gni") |
| 7 import("//third_party/ijar/ijar.gni") | 7 import("//third_party/ijar/ijar.gni") |
| 8 | 8 |
| 9 assert(is_android) | 9 assert(is_android) |
| 10 | 10 |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 "--isolate-file-path", | 1671 "--isolate-file-path", |
| 1672 rebase_path(invoker.isolate_file, root_build_dir), | 1672 rebase_path(invoker.isolate_file, root_build_dir), |
| 1673 ] | 1673 ] |
| 1674 } | 1674 } |
| 1675 if (defined(invoker.incremental_install) && invoker.incremental_install) { | 1675 if (defined(invoker.incremental_install) && invoker.incremental_install) { |
| 1676 test_runner_args += [ "--incremental-install" ] | 1676 test_runner_args += [ "--incremental-install" ] |
| 1677 | 1677 |
| 1678 # These can still be overridden, but make more better defaults during | 1678 # These can still be overridden, but make more better defaults during |
| 1679 # development. | 1679 # development. |
| 1680 test_runner_args += [ | 1680 test_runner_args += [ |
| 1681 "--enable-concurrent-adb", |
| 1681 "--enable-device-cache", | 1682 "--enable-device-cache", |
| 1682 "--num_retries=0", | 1683 "--num_retries=0", |
| 1683 ] | 1684 ] |
| 1684 } | 1685 } |
| 1685 | 1686 |
| 1686 generated_script = "$root_build_dir/bin/run_${_test_name}" | 1687 generated_script = "$root_build_dir/bin/run_${_test_name}" |
| 1687 outputs = [ | 1688 outputs = [ |
| 1688 depfile, | 1689 depfile, |
| 1689 generated_script, | 1690 generated_script, |
| 1690 ] | 1691 ] |
| 1691 args = [ | 1692 args = [ |
| 1692 "--depfile", | 1693 "--depfile", |
| 1693 rebase_path(depfile, root_build_dir), | 1694 rebase_path(depfile, root_build_dir), |
| 1694 "--script-output-path", | 1695 "--script-output-path", |
| 1695 rebase_path(generated_script, root_build_dir), | 1696 rebase_path(generated_script, root_build_dir), |
| 1696 ] | 1697 ] |
| 1697 args += test_runner_args | 1698 args += test_runner_args |
| 1698 } | 1699 } |
| 1699 } | 1700 } |
| OLD | NEW |