| 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 # Do not add any imports to non-//build directories here. | 5 # Do not add any imports to non-//build directories here. |
| 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. | 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. |
| 7 import("//build_overrides/build.gni") | 7 import("//build_overrides/build.gni") |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/dcheck_always_on.gni") | 9 import("//build/config/dcheck_always_on.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 if (!defined(deps)) { | 476 if (!defined(deps)) { |
| 477 deps = [] | 477 deps = [] |
| 478 } | 478 } |
| 479 if (!defined(data_deps)) { | 479 if (!defined(data_deps)) { |
| 480 data_deps = [] | 480 data_deps = [] |
| 481 } | 481 } |
| 482 | 482 |
| 483 script = "//build/android/gyp/create_test_runner_script.py" | 483 script = "//build/android/gyp/create_test_runner_script.py" |
| 484 depfile = "$target_gen_dir/$target_name.d" | 484 depfile = "$target_gen_dir/$target_name.d" |
| 485 | 485 |
| 486 data_deps += [ | 486 data_deps += [ "//build/android:test_runner_py" ] |
| 487 "//build/android:test_runner_py", | |
| 488 "//build/android:logdog_wrapper_py", | |
| 489 ] | |
| 490 | |
| 491 data = [] | 487 data = [] |
| 492 | 488 |
| 493 test_runner_args = [ | 489 test_runner_args = [ |
| 494 _test_type, | 490 _test_type, |
| 495 "--output-directory", | 491 "--output-directory", |
| 496 rebase_path(root_build_dir, root_build_dir), | 492 rebase_path(root_build_dir, root_build_dir), |
| 497 ] | 493 ] |
| 498 | 494 |
| 499 if (_runtime_deps) { | 495 if (_runtime_deps) { |
| 500 deps += [ ":$_runtime_deps_target" ] | 496 deps += [ ":$_runtime_deps_target" ] |
| (...skipping 2277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2778 rebase_path(root_build_dir, root_build_dir), | 2774 rebase_path(root_build_dir, root_build_dir), |
| 2779 "--packed-libraries-dir", | 2775 "--packed-libraries-dir", |
| 2780 rebase_path(_packed_libraries_dir, root_build_dir), | 2776 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2781 "--libraries=${invoker.libraries_filearg}", | 2777 "--libraries=${invoker.libraries_filearg}", |
| 2782 "--filelistjson", | 2778 "--filelistjson", |
| 2783 rebase_path(invoker.file_list_json, root_build_dir), | 2779 rebase_path(invoker.file_list_json, root_build_dir), |
| 2784 ] | 2780 ] |
| 2785 } | 2781 } |
| 2786 } | 2782 } |
| 2787 } | 2783 } |
| OLD | NEW |