remoting_me2me_host_wrapper.sh 661 B

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