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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/emma_instr_action.gypi
diff --git a/build/android/emma_instr_action.gypi b/build/android/emma_instr_action.gypi
deleted file mode 100644
index 0505eab21a680864dec51b46cc1597aafe2cb18a..0000000000000000000000000000000000000000
--- a/build/android/emma_instr_action.gypi
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2013 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.
-
-# This file is meant to be included into an action to provide a rule that
-# instruments either java class files, or jars.
-
-{
- 'variables': {
- 'input_path%': '',
- 'output_path%': '',
- 'stamp_path%': '',
- 'extra_instr_args': [
- '--coverage-file=<(coverage_file)',
- '--sources-list-file=<(sources_list_file)',
- ],
- 'emma_jar': '<(android_sdk_root)/tools/lib/emma.jar',
- 'conditions': [
- ['emma_instrument != 0', {
- 'extra_instr_args': [
- '--source-dirs=<(java_in_dir)/src >(additional_src_dirs) >(generated_src_dirs)',
- '--src-root=<(DEPTH)',
- '--emma-jar=<(emma_jar)',
- '--filter-string=<(emma_filter)',
- ],
- 'instr_action': 'instrument_jar',
- }, {
- 'instr_action': 'copy',
- 'extra_instr_args': [],
- }]
- ]
- },
- 'inputs': [
- '<(DEPTH)/build/android/gyp/emma_instr.py',
- '<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(DEPTH)/build/android/pylib/utils/command_option_parser.py',
- ],
- 'action': [
- 'python', '<(DEPTH)/build/android/gyp/emma_instr.py',
- '<(instr_action)',
- '--input-path=<(input_path)',
- '--output-path=<(output_path)',
- '--stamp=<(stamp_path)',
- '<@(extra_instr_args)',
- ]
-}
« 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