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

Unified Diff: android_webview/android_webview.gyp

Issue 10825155: Build target for Android WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: android_webview/android_webview.gyp
diff --git a/android_webview/android_webview.gyp b/android_webview/android_webview.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..a607a51a1b8977f28040142c7d1b6a4cb4c83987
--- /dev/null
+++ b/android_webview/android_webview.gyp
@@ -0,0 +1,55 @@
+# Copyright (c) 2010 The Chromium Authors. All rights reserved.
Jói 2012/08/02 15:20:00 2012
Torne 2012/08/03 10:31:36 Done.
+# 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:plugin',
+ '../chrome/chrome.gyp:renderer',
+ '../chrome/chrome.gyp:utility',
+ '../content/content.gyp:content',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ '../chrome/app/chrome_main_delegate.cc',
+ '../chrome/app/chrome_main_delegate.h',
+ '../chrome/browser/android/tab_android_test_stubs.cc',
+ '../chrome/browser/autofill/test_autofill_external_delegate.cc',
+ '../chrome/browser/autofill/test_autofill_external_delegate_android.cc',
+ ],
+ },
+ {
+ 'target_name': 'libwebview',
+ 'type': 'shared_library',
+ 'dependencies': [
+ 'webview_core',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'lib/webview_entry_point.cc',
Jói 2012/08/02 15:20:00 should these sources be in dll/ since they depend
+ 'lib/webview_main_delegate.cc',
+ 'lib/webview_main_delegate.h',
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2:
« no previous file with comments | « android_webview/OWNERS ('k') | android_webview/lib/DEPS » ('j') | android_webview/lib/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698