Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1540)

Side by Side Diff: build/config/android/internal_rules.gni

Issue 2695963003: Use logdog butler subcommand to run tests. (Closed)
Patch Set: adjust to new test_runner.py Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 += [ "//build/android:test_runner_py" ] 486 data_deps += [
487 "//build/android:test_runner_py",
488 "//build/android:logdog_wrapper_py",
489 ]
490
487 data = [] 491 data = []
488 492
489 test_runner_args = [ 493 test_runner_args = [
490 _test_type, 494 _test_type,
491 "--output-directory", 495 "--output-directory",
492 rebase_path(root_build_dir, root_build_dir), 496 rebase_path(root_build_dir, root_build_dir),
493 ] 497 ]
494 498
495 if (_runtime_deps) { 499 if (_runtime_deps) {
496 deps += [ ":$_runtime_deps_target" ] 500 deps += [ ":$_runtime_deps_target" ]
(...skipping 2277 matching lines...) Expand 10 before | Expand all | Expand 10 after
2774 rebase_path(root_build_dir, root_build_dir), 2778 rebase_path(root_build_dir, root_build_dir),
2775 "--packed-libraries-dir", 2779 "--packed-libraries-dir",
2776 rebase_path(_packed_libraries_dir, root_build_dir), 2780 rebase_path(_packed_libraries_dir, root_build_dir),
2777 "--libraries=${invoker.libraries_filearg}", 2781 "--libraries=${invoker.libraries_filearg}",
2778 "--filelistjson", 2782 "--filelistjson",
2779 rebase_path(invoker.file_list_json, root_build_dir), 2783 rebase_path(invoker.file_list_json, root_build_dir),
2780 ] 2784 ]
2781 } 2785 }
2782 } 2786 }
2783 } 2787 }
OLDNEW
« no previous file with comments | « build/android/test_wrapper/logdog_wrapper.pydeps ('k') | testing/buildbot/chromium.android.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698