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

Unified Diff: docs/android_build_instructions.md

Issue 2770983007: WebView: remove outdated docs for test shell (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/android_build_instructions.md
diff --git a/docs/android_build_instructions.md b/docs/android_build_instructions.md
index a0f95414acb5df38ca74632d0a9df77c298a38a9..57ff34b3a4d3f0716bcda3bb8afaeadca8b0be37 100644
--- a/docs/android_build_instructions.md
+++ b/docs/android_build_instructions.md
@@ -224,24 +224,6 @@ CHROMIUM_OUT_DIR env.
export CHROMIUM_OUT_DIR=out_android
```
-### Build WebView shell
-
-[Android WebView](https://developer.android.com/reference/android/webkit/WebView.html)
-is a system framework component. Since Android KitKat, it is implemented using
-Chromium code (based off the [content module](https://dev.chromium.org/developers/content-module)).
-It is possible to test modifications to WebView using a simple test shell. The
-WebView shell is a view with a URL bar at the top (see [code](https://code.google.com/p/chromium/codesearch#chromium/src/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java))
-and is **independent** of the WebView **implementation in the Android system** (
-the WebView shell is essentially a standalone unbundled app).
-As drawback, the shell runs in non-production rendering mode only.
-
-```shell
-ninja -C out/Release android_webview_apk
-build/android/adb_install_apk.py out/Release/apks/AndroidWebView.apk
-```
-
-If, instead, you want to build the complete Android WebView framework component and test the effect of your chromium changes in other Android app using the WebView, you should follow the [Android AOSP + chromium WebView instructions](https://www.chromium.org/developers/how-tos/build-instructions-android-webview)
boliu 2017/03/23 20:32:41 can keep this link and the description? just drop
Nate Fischer 2017/03/23 20:41:43 Let me know if this is an improvement.
-
### Running
Set [command line flags](https://www.chromium.org/developers/how-tos/run-chromium-with-flags) if necessary.
@@ -258,12 +240,6 @@ For Chrome public:
build/android/adb_run_chrome_public http://example.com
```
-For Android WebView shell:
-
-```shell
-build/android/adb_run_android_webview_shell http://example.com
-```
-
### Logging and debugging
Logging is often the easiest way to understand code flow. In C++ you can print
@@ -284,7 +260,6 @@ following commands:
```shell
build/android/adb_gdb_content_shell
build/android/adb_gdb_chrome_public
-build/android/adb_gdb_android_webview_shell http://example.com
```
See [Debugging Chromium on Android](https://www.chromium.org/developers/how-tos/debugging-on-android)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698