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

Unified Diff: android_webview/android_webview_tests.gypi

Issue 414503004: android: Use hw acceleration in android_webview_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 6 years, 4 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_tests.gypi
diff --git a/android_webview/android_webview_tests.gypi b/android_webview/android_webview_tests.gypi
index 0419d60e724b70e5e20527c0136d6516e8ce9bee..6216784825ae8a73acae7435b03bc5599fb4b971 100644
--- a/android_webview/android_webview_tests.gypi
+++ b/android_webview/android_webview_tests.gypi
@@ -10,6 +10,7 @@
'libwebviewchromium',
'android_webview_java',
'android_webview_pak',
+ 'libdrawgl',
],
'variables': {
'apk_name': 'AndroidWebView',
@@ -17,6 +18,7 @@
'native_lib_target': 'libstandalonelibwebviewchromium',
'resource_dir': 'test/shell/res',
'extensions_to_not_compress': 'pak',
+ 'additional_bundled_libs': '<(SHARED_LIB_DIR)/libdrawgl.so',
'additional_input_paths': [
'<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak',
'<(PRODUCT_DIR)/android_webview_apk/assets/en-US.pak',
@@ -162,5 +164,17 @@
],
'includes': [ '../build/apk_test.gypi' ],
},
+ {
+ 'target_name': 'libdrawgl',
+ 'type': 'shared_library',
+ # Do not depend on any other component here, since this target
+ # builds a separate shared library!
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ '../android_webview/test/shell/src/draw_gl/draw_gl.cc',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698