Commit b678b85a authored by mkosiba@chromium.org's avatar mkosiba@chromium.org

[Android] Remove the webview_core static library.

This removes webview_core and moves the deps directly into
the libwebview target.
The reason for this change is that make doesn't work correctly
with a shared_library that doesn't contain any source files.

BUG=


Review URL: https://chromiumcodereview.appspot.com/10827382

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151949 0039d316-1c4b-4281-b951-d872f2087c98
parent 6e7b43a4
...@@ -7,11 +7,8 @@ ...@@ -7,11 +7,8 @@
}, },
'targets': [ 'targets': [
{ {
# TODO(torne): This is vaguely based on the downstream android target 'target_name': 'libwebview',
# "chromeview_core" and once that target has been upstreamed we should 'type': 'shared_library',
# just depend on it instead.
'target_name': 'webview_core',
'type': 'static_library',
'dependencies': [ 'dependencies': [
'../../chrome/chrome.gyp:browser', '../../chrome/chrome.gyp:browser',
'../../chrome/chrome.gyp:renderer', '../../chrome/chrome.gyp:renderer',
...@@ -20,16 +17,6 @@ ...@@ -20,16 +17,6 @@
'include_dirs': [ 'include_dirs': [
'../..', '../..',
], ],
},
{
'target_name': 'libwebview',
'type': 'shared_library',
'dependencies': [
'webview_core',
],
'include_dirs': [
'../..',
],
'sources': [ 'sources': [
'main/webview_entry_point.cc', 'main/webview_entry_point.cc',
'main/webview_main_delegate.cc', 'main/webview_main_delegate.cc',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment