Skip to content

Commit

Permalink
[wpeview] Rename libWPEAndroidBrowser to libWPEAndroidRuntime
Browse files Browse the repository at this point in the history
  • Loading branch information
zhani committed Oct 20, 2024
1 parent 1409d10 commit 859fff1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions wpeview/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ target_configure_quality(WPEAndroidCommon)
target_include_directories(WPEAndroidCommon INTERFACE Common)
target_link_libraries(WPEAndroidCommon ${android-lib} ${log-lib} ${sync-lib})

# libWPEAndroidBrowser
# libWPEAndroidRuntime
add_library(
WPEAndroidBrowser SHARED
WPEAndroidRuntime SHARED
Runtime/EntryPoint.cpp
Runtime/Fence.cpp
Runtime/InputMethodContext.cpp
Expand All @@ -119,10 +119,10 @@ add_library(
Runtime/WKSettings.cpp
Runtime/WKWebsiteDataManager.cpp
Runtime/WKWebView.cpp)
target_configure_quality(WPEAndroidBrowser)
target_compile_definitions(WPEAndroidBrowser PRIVATE WPE_ENABLE_PROCESS)
target_configure_quality(WPEAndroidRuntime)
target_compile_definitions(WPEAndroidRuntime PRIVATE WPE_ENABLE_PROCESS)
target_link_libraries(
WPEAndroidBrowser
WPEAndroidRuntime
EGL
GLESv2
gio-2.0
Expand Down
2 changes: 1 addition & 1 deletion wpeview/src/main/java/org/wpewebkit/wpe/WKRuntime.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public final class WKRuntime {
// or the gstreamer plugins or else they won't be applied.
private static final String assetsVersion = "ui_process_assets_2.46.0";

static { System.loadLibrary("WPEAndroidBrowser"); }
static { System.loadLibrary("WPEAndroidRuntime"); }

protected static native void startNativeLooper();
private static native void setupNativeEnvironment(@NonNull String[] envStringsArray);
Expand Down

0 comments on commit 859fff1

Please sign in to comment.