diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-27 09:48:47 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-27 09:48:47 +0000 |
commit | e5fc9bfffb15f8d85590e5e123e65260774f31e3 (patch) | |
tree | b8af07b9a2f16ae1a5a9a4c6bfaceb7beb1a67d1 /mojo/mojo.gyp | |
parent | fb1176eb3ba474a0376fc7d7b35a99907d69e22f (diff) | |
download | chromium_src-e5fc9bfffb15f8d85590e5e123e65260774f31e3.zip chromium_src-e5fc9bfffb15f8d85590e5e123e65260774f31e3.tar.gz chromium_src-e5fc9bfffb15f8d85590e5e123e65260774f31e3.tar.bz2 |
Pass app URL to mojo_shell on Android
This CL lets us supply an app URL to mojo_shell on Android. To load an app, you
can use the adb_run_mojo_shell script:
$ ./build/android/adb_run_mojo_shell http://127.0.0.1:4444/libsample_app.so
This script starts the MojoShellActivity on the device and passes the URL to
mojo_shell via an Android Intent. We're currently using the VIEW intent, but we
might want to switch to a different intent at some point.
R=darin@chromium.org,aa@chromium.org
Review URL: https://codereview.chromium.org/47343002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231260 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/mojo.gyp')
-rw-r--r-- | mojo/mojo.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp index c72d5c7..d2d202c 100644 --- a/mojo/mojo.gyp +++ b/mojo/mojo.gyp @@ -192,7 +192,7 @@ }, { 'target_name': 'sample_app', - 'type': '<(component)', + 'type': 'shared_library', 'dependencies': [ '../base/base.gyp:base', 'mojo_system', |