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

Unified Diff: android_webview/lib/android_webview.gyp

Issue 10825155: Build target for Android WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove chrome/ changes Created 8 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 | « android_webview/lib/DEPS ('k') | android_webview/lib/main/webview_entry_point.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/android_webview.gyp
diff --git a/android_webview/lib/android_webview.gyp b/android_webview/lib/android_webview.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..ceeedceb2ce0139e25b12066f891f025f1813266
--- /dev/null
+++ b/android_webview/lib/android_webview.gyp
@@ -0,0 +1,47 @@
+# 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.
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ # TODO(torne): This is vaguely based on the downstream android target
+ # "chromeview_core" and once that target has been upstreamed we should
+ # just depend on it instead.
+ 'target_name': 'webview_core',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../chrome/chrome.gyp:browser',
+ '../../chrome/chrome.gyp:renderer',
+ '../../content/content.gyp:content',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ },
+ {
+ 'target_name': 'libwebview',
+ 'type': 'shared_library',
+ 'dependencies': [
+ 'webview_core',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ 'main/webview_entry_point.cc',
+ 'main/webview_main_delegate.cc',
+ 'main/webview_main_delegate.h',
+ 'main/webview_stubs.cc',
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2:
« no previous file with comments | « android_webview/lib/DEPS ('k') | android_webview/lib/main/webview_entry_point.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698