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

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

Issue 2521513007: Add support for a custom test_runner.py script. (Closed)
Patch Set: test_runner_script -> android_test_runner_script Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 generated_script, 584 generated_script,
585 ] 585 ]
586 data += [ generated_script ] 586 data += [ generated_script ]
587 587
588 args = [ 588 args = [
589 "--depfile", 589 "--depfile",
590 rebase_path(depfile, root_build_dir), 590 rebase_path(depfile, root_build_dir),
591 "--script-output-path", 591 "--script-output-path",
592 rebase_path(generated_script, root_build_dir), 592 rebase_path(generated_script, root_build_dir),
593 ] 593 ]
594 if (defined(android_test_runner_script)) {
595 args += [
596 "--test-runner-path",
597 android_test_runner_script,
598 ]
599 }
600
594 args += test_runner_args 601 args += test_runner_args
595 } 602 }
596 } 603 }
597 604
598 if (enable_java_templates) { 605 if (enable_java_templates) {
599 import("//build/config/zip.gni") 606 import("//build/config/zip.gni")
600 import("//third_party/ijar/ijar.gni") 607 import("//third_party/ijar/ijar.gni")
601 import("//third_party/android_platform/config.gni") 608 import("//third_party/android_platform/config.gni")
602 609
603 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) 610 rebased_android_sdk = rebase_path(android_sdk, root_build_dir)
(...skipping 2119 matching lines...) Expand 10 before | Expand all | Expand 10 after
2723 rebase_path(root_build_dir, root_build_dir), 2730 rebase_path(root_build_dir, root_build_dir),
2724 "--packed-libraries-dir", 2731 "--packed-libraries-dir",
2725 rebase_path(_packed_libraries_dir, root_build_dir), 2732 rebase_path(_packed_libraries_dir, root_build_dir),
2726 "--libraries=${invoker.libraries_filearg}", 2733 "--libraries=${invoker.libraries_filearg}",
2727 "--filelistjson", 2734 "--filelistjson",
2728 rebase_path(invoker.file_list_json, root_build_dir), 2735 rebase_path(invoker.file_list_json, root_build_dir),
2729 ] 2736 ]
2730 } 2737 }
2731 } 2738 }
2732 } 2739 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698