summaryrefslogtreecommitdiffstats
path: root/build/android/test_runner.gypi
blob: b211995965fc95511b6389b36744b4b11272dabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Generates a script in the output bin directory which runs the test
# target using the test runner script in build/android/pylib/test_runner.py.
#
# To use this, include this file in a gtest or instrumentation test target.
# {
#   'target_name': 'gtest',
#   'type': 'none',
#   'variables': {
#     'test_type': 'gtest',  # string
#     'test_suite_name': 'gtest_suite'  # string
#     'isolate_file': 'path/to/gtest.isolate'  # string
#   },
#   'includes': ['path/to/this/gypi/file'],
# }
#
# {
#   'target_name': 'instrumentation_apk',
#   'type': 'none',
#   'variables': {
#     'test_type': 'instrumentation',  # string
#     'apk_name': 'TestApk'  # string
#     'isolate_file': 'path/to/instrumentation_test.isolate'  # string
#   },
#   'includes': ['path/to/this/gypi/file'],
# }
#
# {
#   'target_name': 'junit_test',
#   'type': 'none',
#   'variables': {
#     'test_type': 'junit',  # string
#   },
#   'includes': ['path/to/this/gypi/file'],
# }
#

{
  'variables': {
    'variables': {
      'additional_apks%': [],
      'isolate_file%': '',
    },
    'test_runner_args': ['--output-directory', '<(PRODUCT_DIR)'],
    'conditions': [
      ['test_type == "gtest"', {
        'test_runner_args': ['--suite', '<(test_suite_name)'],
        'script_name': 'run_<(test_suite_name)',
      }],
      ['test_type == "instrumentation"', {
        'test_runner_args': [
          '--apk-under-test', '>(tested_apk_path)',
          '--test-apk', '>(final_apk_path)',
        ],
        'script_name': 'run_<(_target_name)',
        'conditions': [
          ['emma_instrument != 0', {
            'test_runner_args': [
              '--coverage-dir', '<(PRODUCT_DIR)/coverage',
            ],
          }],
        ],
      }],
      ['test_type == "junit"', {
        'test_runner_args': ['--test-suite', '<(_target_name)'],
        'script_name': 'run_<(_target_name)',
      }],
      ['additional_apks != []', {
        'test_runner_args': ['--additional-apk-list', '>(additional_apks)'],
      }],
      ['isolate_file != ""', {
        'test_runner_args': ['--isolate-file-path', '<(isolate_file)']
      }],
    ],
  },
  'actions': [
    {
      'action_name': 'create_test_runner_script_<(script_name)',
      'message': 'Creating test runner script <(script_name)',
      'variables': {
        'script_output_path': '<(PRODUCT_DIR)/bin/<(script_name)',
      },
      'inputs': [
        '<(DEPTH)/build/android/gyp/create_test_runner_script.py',
      ],
      'outputs': [
        '<(script_output_path)'
      ],
      'action': [
        'python', '<(DEPTH)/build/android/gyp/create_test_runner_script.py',
        '--script-output-path=<(script_output_path)',
        '<(test_type)', '<@(test_runner_args)',
      ],
    },
  ],
}