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

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

Issue 512923002: Add support for Android aidl and support for gyp's java_in_dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: build/android/gyp/write_build_config.py
diff --git a/build/android/gyp/write_build_config.py b/build/android/gyp/write_build_config.py
index 04437b6047fd546ad86065d1c99227e3b29b5975..7340b378e1d7d953c1e8205031b54a7a35038b52 100755
--- a/build/android/gyp/write_build_config.py
+++ b/build/android/gyp/write_build_config.py
@@ -111,7 +111,7 @@ def main(argv):
unknown_deps = [
c for c in possible_deps_config_paths if not os.path.exists(c)]
if unknown_deps and not allow_unknown_deps:
- raise Exception('Unknown deps: ' + unknown_deps)
+ raise Exception('Unknown deps: ' + str(unknown_deps))
cjhopman 2014/08/27 18:37:59 Looks like some random fixes have popped up in her
direct_deps_config_paths = [
c for c in possible_deps_config_paths if not c in unknown_deps]

Powered by Google App Engine
This is Rietveld 408576698