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