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

Unified Diff: build/android/gyp/aidl.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/findbugs_diff.py ('k') | build/android/gyp/apk_obfuscate.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/aidl.py
diff --git a/build/android/gyp/aidl.py b/build/android/gyp/aidl.py
index 85ceeae3e64ecb527f833d4d28860473ba3efdf9..66030b2c8f7ed93594c36f876a0c555db3e117f3 100755
--- a/build/android/gyp/aidl.py
+++ b/build/android/gyp/aidl.py
@@ -32,11 +32,11 @@ def main(argv):
output = os.path.join(temp_dir, classname + '.java')
aidl_cmd = [options.aidl_path]
aidl_cmd += [
- '-p' + s for s in build_utils.ParseGypList(options.imports)
+ '-p' + s for s in build_utils.ParseGnList(options.imports)
]
if options.includes is not None:
aidl_cmd += [
- '-I' + s for s in build_utils.ParseGypList(options.includes)
+ '-I' + s for s in build_utils.ParseGnList(options.includes)
]
aidl_cmd += [
f,
« no previous file with comments | « build/android/findbugs_diff.py ('k') | build/android/gyp/apk_obfuscate.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698