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

Unified Diff: build/android/gyp/emma_instr.py

Issue 1647353002: Use gn_helpers to [se]serialize GN lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@python_impl
Patch Set: more Created 4 years, 4 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/gyp/dex.py ('k') | build/android/gyp/finalize_splits.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/emma_instr.py
diff --git a/build/android/gyp/emma_instr.py b/build/android/gyp/emma_instr.py
index 63ef03f1798b9799dac3c9513cfce2824c8b925c..57be36be493b6353c00a325b77f82d09130bc67c 100755
--- a/build/android/gyp/emma_instr.py
+++ b/build/android/gyp/emma_instr.py
@@ -195,11 +195,11 @@ def _RunInstrumentCommand(_command, options, _, option_parser):
shutil.rmtree(temp_dir)
if options.source_dirs:
- source_dirs = build_utils.ParseGypList(options.source_dirs)
+ source_dirs = build_utils.ParseGnList(options.source_dirs)
else:
source_files = []
if options.source_files:
- source_files += build_utils.ParseGypList(options.source_files)
+ source_files += build_utils.ParseGnList(options.source_files)
if options.java_sources_file:
source_files.extend(
build_utils.ReadSourcesList(options.java_sources_file))
« no previous file with comments | « build/android/gyp/dex.py ('k') | build/android/gyp/finalize_splits.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698