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

Unified Diff: chrome/chrome_android.gypi

Issue 10918113: Add initial Chromium TestShell support for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comment for RegisterApplicationNativeMethods 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
new file mode 100644
index 0000000000000000000000000000000000000000..5300c6ed462459bb6d835e4c788d1fa22b22c68b
--- /dev/null
+++ b/chrome/chrome_android.gypi
@@ -0,0 +1,148 @@
+# 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,
+ },
+ 'includes': [
+ 'chrome_android_paks.gypi', # Included for the list of pak resources.
+ ],
+ 'targets': [
+ {
+ 'target_name': 'libchromiumtestshell',
+ 'type': 'shared_library',
+ 'dependencies': [
+ 'chrome_android_core',
+ ],
+ 'sources': [
+ 'android/testshell/chrome_main_delegate_testshell_android.cc',
+ 'android/testshell/chrome_main_delegate_testshell_android.h',
+ 'android/testshell/testshell_entry_point.cc',
+ 'android/testshell/testshell_stubs.cc',
+ ],
+ 'include_dirs': [
+ '<(SHARED_INTERMEDIATE_DIR)/android',
+ '../skia/config',
+ ],
+ 'conditions': [
+ [ 'order_profiling!=0', {
+ 'conditions': [
+ [ 'OS="android"', {
+ 'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
+ }],
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'chromium_testshell',
+ 'type': 'none',
+ 'dependencies': [
+ 'chrome_android_paks',
+ 'libchromiumtestshell',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'copy_and_strip_so',
+ 'inputs': ['<(SHARED_LIB_DIR)/libchromiumtestshell.so'],
+ 'outputs': ['<(PRODUCT_DIR)/chromium_testshell/libs/<(android_app_abi)/libchromiumtestshell.so'],
+ 'action': [
+ '<(android_strip)',
+ '--strip-unneeded',
+ '<@(_inputs)',
+ '-o',
+ '<@(_outputs)',
+ ],
+ },
+ {
+ 'action_name': 'chromium_testshell_generate_apk',
+ 'inputs': [
+ '<@(chrome_android_pak_output_resources)',
+ '<!@(find android/testshell/java/src -name "*.java")',
+ '<!@(find android/testshell/java/res -name "*.png")',
+ '<!@(find android/testshell/java/res -name "*.xml")',
+ '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
+ '<(PRODUCT_DIR)/lib.java/chromium_net.jar',
+ '<(PRODUCT_DIR)/lib.java/chromium_media.jar',
+ '<(PRODUCT_DIR)/lib.java/chromium_content.jar',
+ '<(PRODUCT_DIR)/lib.java/chromium_chrome.jar',
+ '<(PRODUCT_DIR)/lib.java/chromium_web_contents_delegate_android.jar',
+ '<(PRODUCT_DIR)/chromium_testshell/libs/<(android_app_abi)/libchromiumtestshell.so'
Yaron 2012/09/11 00:01:28 This will need to be synced up with Shashi's cl (h
David Trainor- moved to gerrit 2012/09/11 00:25:04 I shall be first! On 2012/09/11 00:01:28, Yaron w
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/chromium_testshell/ChromiumTestShell-debug.apk',
+ ],
+ 'action': [
+ 'ant',
+ '-DPRODUCT_DIR=<(ant_build_out)',
+ '-DAPP_ABI=<(android_app_abi)',
+ '-DANDROID_SDK=<(android_sdk)',
+ '-DANDROID_SDK_ROOT=<(android_sdk_root)',
+ '-DANDROID_SDK_TOOLS=<(android_sdk_tools)',
+ '-DANDROID_SDK_VERSION=<(android_sdk_version)',
+ '-DANDROID_GDBSERVER=<(android_gdbserver)',
+ '-DCONFIGURATION_NAME=<(CONFIGURATION_NAME)',
+ '-buildfile',
+ '<(DEPTH)/chrome/android/testshell/java/chromium_testshell_apk.xml',
+ ],
+ },
+ ],
+ },
+ {
+ 'target_name': 'chrome_android_core',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'chrome.gyp:browser',
+ 'chrome.gyp:plugin',
+ 'chrome.gyp:renderer',
+ 'chrome.gyp:utility',
+ '../content/content.gyp:content',
Yaron 2012/09/11 00:01:28 The non-chrome deps seem bogus (they should be pul
David Trainor- moved to gerrit 2012/09/11 00:25:04 Done.
+ '../skia/skia.gyp:skia',
+ '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'include_dirs': [
+ '..',
+ '<(SHARED_INTERMEDIATE_DIR)/android',
+ '<(SHARED_INTERMEDIATE_DIR)/chrome',
+ '<(android_ndk_include)',
+ ],
+ 'sources': [
+ 'app/android/chrome_android_initializer.cc',
+ 'app/android/chrome_android_initializer.h',
+ 'app/android/chrome_main_delegate_android.cc',
+ 'app/android/chrome_main_delegate_android.h',
+ 'app/chrome_main_delegate.cc',
+ 'app/chrome_main_delegate.h',
+ 'browser/android/tab_android.h',
Yaron 2012/09/11 00:01:28 Remove this.
David Trainor- moved to gerrit 2012/09/11 00:25:04 Done.
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-landroid',
+ '-ljnigraphics',
+ ],
+ },
+ 'conditions': [
Yaron 2012/09/11 00:01:28 This doesn't seem necessary. The define is only in
David Trainor- moved to gerrit 2012/09/11 00:25:04 Done.
+ [ 'java_bridge==1', {
+ 'defines': [ 'ENABLE_JAVA_BRIDGE', ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'chrome_android_paks',
+ 'type': 'none',
+ 'dependencies': [
+ '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
+ '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
+ ],
+ 'copies': [
+ {
+ 'destination': '<(chrome_android_pak_output_folder)',
+ 'files': [ '<@(chrome_android_pak_input_resources)' ],
+ }
+ ],
+ },
+ ],
+}
+

Powered by Google App Engine
This is Rietveld 408576698