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

Unified Diff: chrome/chrome_android.gypi

Issue 10968003: Add rendering support to the TestShell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Nits Created 8 years, 3 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: chrome/chrome_android.gypi
diff --git a/chrome/chrome_android.gypi b/chrome/chrome_android.gypi
index 25c909bdaa7a58ae376e31caa129a713c398be97..dfb2385dbf875ca41644be348e829ca493a0fc6f 100644
--- a/chrome/chrome_android.gypi
+++ b/chrome/chrome_android.gypi
@@ -14,15 +14,19 @@
'type': 'shared_library',
'dependencies': [
'chrome_android_core',
+ 'chromium_testshell_jni_headers',
],
'sources': [
'android/testshell/chrome_main_delegate_testshell_android.cc',
'android/testshell/chrome_main_delegate_testshell_android.h',
+ 'android/testshell/tab_manager.cc',
+ 'android/testshell/tab_manager.h',
'android/testshell/testshell_entry_point.cc',
'android/testshell/testshell_stubs.cc',
],
'include_dirs': [
'<(SHARED_INTERMEDIATE_DIR)/android',
+ '<(SHARED_INTERMEDIATE_DIR)/chromium_testshell',
'../skia/config',
],
'conditions': [
@@ -69,6 +73,17 @@
'includes': [ '../build/java_apk.gypi', ],
},
{
+ 'target_name': 'chromium_testshell_jni_headers',
+ 'type': 'none',
+ 'sources': [
+ 'android/testshell/java/src/org/chromium/chrome/testshell/TabManager.java',
+ ],
+ 'variables': {
+ 'jni_gen_dir': 'chromium_testshell',
+ },
+ 'includes': [ '../build/jni_generator.gypi' ],
+ },
+ {
'target_name': 'chrome_android_core',
'type': 'static_library',
'dependencies': [

Powered by Google App Engine
This is Rietveld 408576698