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

Side by Side Diff: build/android/emma_instr_action.gypi

Issue 2331893004: Remove GYP files in breakpad, build, and tools. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « build/android/disable_gcc_lto.gypi ('k') | build/android/finalize_apk_action.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file is meant to be included into an action to provide a rule that
6 # instruments either java class files, or jars.
7
8 {
9 'variables': {
10 'input_path%': '',
11 'output_path%': '',
12 'stamp_path%': '',
13 'extra_instr_args': [
14 '--coverage-file=<(coverage_file)',
15 '--sources-list-file=<(sources_list_file)',
16 ],
17 'emma_jar': '<(android_sdk_root)/tools/lib/emma.jar',
18 'conditions': [
19 ['emma_instrument != 0', {
20 'extra_instr_args': [
21 '--source-dirs=<(java_in_dir)/src >(additional_src_dirs) >(generated_s rc_dirs)',
22 '--src-root=<(DEPTH)',
23 '--emma-jar=<(emma_jar)',
24 '--filter-string=<(emma_filter)',
25 ],
26 'instr_action': 'instrument_jar',
27 }, {
28 'instr_action': 'copy',
29 'extra_instr_args': [],
30 }]
31 ]
32 },
33 'inputs': [
34 '<(DEPTH)/build/android/gyp/emma_instr.py',
35 '<(DEPTH)/build/android/gyp/util/build_utils.py',
36 '<(DEPTH)/build/android/pylib/utils/command_option_parser.py',
37 ],
38 'action': [
39 'python', '<(DEPTH)/build/android/gyp/emma_instr.py',
40 '<(instr_action)',
41 '--input-path=<(input_path)',
42 '--output-path=<(output_path)',
43 '--stamp=<(stamp_path)',
44 '<@(extra_instr_args)',
45 ]
46 }
OLDNEW
« no previous file with comments | « build/android/disable_gcc_lto.gypi ('k') | build/android/finalize_apk_action.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698