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

Unified Diff: android_webview/tools/gyp_webview

Issue 11090069: Android: Make webview builds more convenient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « Android.mk ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/tools/gyp_webview
diff --git a/android_webview/tools/gyp_webview b/android_webview/tools/gyp_webview
new file mode 100755
index 0000000000000000000000000000000000000000..86e882d40d8c324655c04e8f30f7260e0878a17e
--- /dev/null
+++ b/android_webview/tools/gyp_webview
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# Copyright (c) 2012 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 script runs gyp with the configuration required to build WebView in the
+# Android build system. It is not necessary to source build/android/envsetup.sh
+# before running this script.
+
+set -e
+
+export CHROME_ANDROID_BUILD_WEBVIEW=1
+export CHROME_SRC="$(readlink -f "$(dirname "$0")/../..")"
+export PYTHONDONTWRITEBYTECODE=1
+. build/android/envsetup.sh
+android_gyp
Yaron 2012/10/12 00:15:17 Did you want to set the relevant gyp generator or
Torne 2012/10/12 10:01:01 envsetup handles the webview build, when CHROME_AN
« no previous file with comments | « Android.mk ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698