Chromium Code Reviews| 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..6b1bb6c49f7aa4c616d2b49a32c5e6b144e4ca7e |
| --- /dev/null |
| +++ b/android_webview/lib/android_webview.gyp |
| @@ -0,0 +1,55 @@ |
| +# 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:plugin', |
| + '../../chrome/chrome.gyp:renderer', |
| + '../../chrome/chrome.gyp:utility', |
|
joth
2012/08/03 15:20:11
none of these chrome/ references are inspected by
Torne
2012/08/06 09:48:47
DEPS only checks header inclusion, not linkage.
|
| + '../../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': [ |
| + 'main/webview_entry_point.cc', |
| + 'main/webview_main_delegate.cc', |
| + 'main/webview_main_delegate.h', |
| + ], |
| + }, |
| + ], |
| +} |
| + |
| +# Local Variables: |
| +# tab-width:2 |
| +# indent-tabs-mode:nil |
| +# End: |
| +# vim: set expandtab tabstop=2 shiftwidth=2: |