summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
authorweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-28 05:22:00 +0000
committerweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-28 05:22:00 +0000
commit1a9acf64f5b033cbe0c3d1a3d88f647bedbadc41 (patch)
treec6bad661a2da146c30ea75d244835c3211944ba3 /remoting/tools
parent897435b14d716f8a90edf96ce9de3309d4e2e5c1 (diff)
downloadchromium_src-1a9acf64f5b033cbe0c3d1a3d88f647bedbadc41.zip
chromium_src-1a9acf64f5b033cbe0c3d1a3d88f647bedbadc41.tar.gz
chromium_src-1a9acf64f5b033cbe0c3d1a3d88f647bedbadc41.tar.bz2
Add breakpad support for me2me and it2me native messaging host on Mac.
Changes in this CL include: 1. Initialize breakpad in it2me native messaging host 2. Create bundles for it2me and me2me native messaging hosts and move them out of the me2me host bundle (and update the manifests accordingly). 3. Dump symbols of the it2me and me2me native messaging hosts 4. Sign the me2me and it2me native messaging hosts 4. Rename the me2me host bundle and the prefPane bundle to get rid of the internal chromium/chromoting names and to conform to Mac convention 5. Refactor GYP, build-installer-archive.py, and do_signing.sh, etc to use name constants from branding_chrome and branding_chromium instead of hard coded names. This ensures that all the name constants are defined in a central location and reduces duplicate name definitions. Here are the names of the host bundles: me2me host: old name: org.chromium.chromoting.me2me_host new name: ChromeRemoteDesktop.Host Pref pane: old name: org.chromium.chromoting.prefPane new name: ChromeRemoteDesktop.prefPane it2me nm host: name: NativeMessagingHost Full Path: /Library/Google/ChromeRemoteDesktop/NativeMessagingHost.app me2me nm host: name: RemoteAssistanceHost Full path: /Library/Google/ChromeRemoteDesktop/RemoteAssistanceHost.app BUG= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=259287 Review URL: https://codereview.chromium.org/186763004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260075 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/tools')
-rwxr-xr-xremoting/tools/get_mac_crd_version.sh4
-rwxr-xr-xremoting/tools/register_local_nm_hosts.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/remoting/tools/get_mac_crd_version.sh b/remoting/tools/get_mac_crd_version.sh
index dbddb9c..89661c1 100755
--- a/remoting/tools/get_mac_crd_version.sh
+++ b/remoting/tools/get_mac_crd_version.sh
@@ -4,10 +4,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-ME2ME_HOST="/Library/PrivilegedHelperTools/org.chromium.chromoting.me2me_host.app"
+ME2ME_HOST="/Library/PrivilegedHelperTools/ChromeRemoteDesktopHost.bundle"
UNINSTALLER_CHROME="/Applications/Chrome Remote Desktop Host Uninstaller.app"
UNINSTALLER_CHROMIUM="/Applications/Chromoting Host Uninstaller.app"
-PREFPANE="/Library/PreferencePanes/org.chromium.chromoting.prefPane"
+PREFPANE="/Library/PreferencePanes/ChromeRemoteDesktop.prefPane"
KEYSTONE="/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle"
INFO_PLIST="Contents/Info.plist"
diff --git a/remoting/tools/register_local_nm_hosts.sh b/remoting/tools/register_local_nm_hosts.sh
index b59bf21..8a0b253 100755
--- a/remoting/tools/register_local_nm_hosts.sh
+++ b/remoting/tools/register_local_nm_hosts.sh
@@ -34,12 +34,12 @@ register_hosts() {
install_manifest \
"${SRC_DIR}/remoting/host/setup/${ME2ME_HOST_NAME}.json.jinja2" \
- "${build_dir}/remoting_native_messaging_host" \
+ "${build_dir}/native_messaging_host" \
ME2ME_HOST_PATH "${chrome_data_dir}"
install_manifest \
"${SRC_DIR}/remoting/host/it2me/${IT2ME_HOST_NAME}.json.jinja2" \
- "${build_dir}/remoting_it2me_native_messaging_host" \
+ "${build_dir}/remote_assistance_host" \
IT2ME_HOST_PATH "${chrome_data_dir}"
}