| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 |
| 3 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 # This is a simple wrapper script around the remoting_me2me_host binary, |
| 8 # intended only for development use. It is copied into a build |
| 9 # subdirectory as |
| 10 # $CHROMIUM_OUTPUT_DIR/remoting/chrome-remote-desktop-host |
| 11 # and runs the remoting_me2me_host binary in the parent output directory. |
| 12 # The linux_me2me_host.py script is also copied into the remoting/ |
| 13 # build directory, so it finds this host wrapper script in the same |
| 14 # directory. |
| 15 |
| 16 exec "$(dirname "$0")/../remoting_me2me_host" "$@" |
| OLD | NEW |