mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
New Android suppport
This commit is contained in:
parent
53d8f04ac4
commit
17a6cb5873
25 changed files with 657 additions and 29 deletions
22
support/android/apk/jni/Android.mk
Normal file
22
support/android/apk/jni/Android.mk
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Copyright (C) 2010 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := servo
|
||||
LOCAL_SRC_FILES := $(TARGET_ARCH_ABI)/libmain.so
|
||||
include $(PREBUILT_SHARED_LIBRARY)
|
||||
|
||||
# $(call import-module)
|
2
support/android/apk/jni/Application.mk
Normal file
2
support/android/apk/jni/Application.mk
Normal file
|
@ -0,0 +1,2 @@
|
|||
APP_ABI := armeabi
|
||||
APP_PLATFORM := android-18
|
58
support/android/apk/jni/main.c
Normal file
58
support/android/apk/jni/main.c
Normal file
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* Copyright (C) 2010 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
//BEGIN_INCLUDE(all)
|
||||
#include <jni.h>
|
||||
#include <errno.h>
|
||||
#include <dlfcn.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <android/log.h>
|
||||
#include <android_native_app_glue.h>
|
||||
|
||||
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "servo-wrapper", __VA_ARGS__))
|
||||
#define LOGW(...) ((void)__android_log_print(ANDROID_LOG_WARN, "servo-wrapper", __VA_ARGS__))
|
||||
|
||||
/**
|
||||
* This is the main entry point of a native application that is using
|
||||
* android_native_app_glue. It runs in its own thread, with its own
|
||||
* event loop for receiving input events and doing other things.
|
||||
*/
|
||||
void android_main(struct android_app* state) {
|
||||
LOGI("in android_main");
|
||||
void* libservo = dlopen("libservo.so", RTLD_NOW);
|
||||
if (libservo == NULL) {
|
||||
LOGI("failed to load servo lib: %s", dlerror());
|
||||
return;
|
||||
}
|
||||
|
||||
LOGI("loaded libservo.so");
|
||||
void (*android_main)(struct android_app*);
|
||||
*(void**)(&android_main) = dlsym(libservo, "android_main");
|
||||
if (android_main) {
|
||||
LOGI("go into android_main()");
|
||||
(*android_main)(state);
|
||||
return;
|
||||
}
|
||||
}
|
||||
//END_INCLUDE(all)
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
LOGI("WAT");
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue