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: |