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

Side by Side Diff: remoting/host/installer/linux/Makefile

Issue 186763004: Add breakpad support for me2me and it2me native messaging host on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Linux build break in Official Chrome build. Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This Makefile is used by debhelper, which supplies the appropriate value of 5 # This Makefile is used by debhelper, which supplies the appropriate value of
6 # variables not defined here, such as DESTDIR. 6 # variables not defined here, such as DESTDIR.
7 7
8 SRC_DIR = ../../../.. 8 SRC_DIR = ../../../..
9 BUILD_DIR = $(SRC_DIR)/out/Release 9 BUILD_DIR = $(SRC_DIR)/out/Release
10 10
11 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop 11 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop
12 CRON_DIR = $(DESTDIR)/etc/cron.daily 12 CRON_DIR = $(DESTDIR)/etc/cron.daily
13 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts 13 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts
14 14
15 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host 15 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host
16 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug 16 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug
17 START_PROGNAME = $(BUILD_DIR)/remoting_start_host 17 START_PROGNAME = $(BUILD_DIR)/remoting_start_host
18 START_DEBUGFILE = $(START_PROGNAME).debug 18 START_DEBUGFILE = $(START_PROGNAME).debug
19 ME2ME_NM_PROGNAME = $(BUILD_DIR)/remoting_native_messaging_host 19 ME2ME_NM_PROGNAME = $(BUILD_DIR)/native_messaging_host
20 ME2ME_NM_DEBUGFILE = $(ME2ME_NM_PROGNAME).debug 20 ME2ME_NM_DEBUGFILE = $(ME2ME_NM_PROGNAME).debug
21 REMOTE_ASSISTANCE_PROGNAME = $(BUILD_DIR)/remoting_it2me_native_messaging_host 21 REMOTE_ASSISTANCE_PROGNAME = $(BUILD_DIR)/remote_assistance_host
22 REMOTE_ASSISTANCE_DEBUGFILE = $(REMOTE_ASSISTANCE_PROGNAME).debug 22 REMOTE_ASSISTANCE_DEBUGFILE = $(REMOTE_ASSISTANCE_PROGNAME).debug
23 23
24 all: 24 all:
25 25
26 install: 26 install:
27 install -d "$(INSTALL_DIR)" 27 install -d "$(INSTALL_DIR)"
28 install -d "$(INSTALL_DIR)/remoting_locales" 28 install -d "$(INSTALL_DIR)/remoting_locales"
29 install -d "$(NATIVE_MESSAGING_DIR)" 29 install -d "$(NATIVE_MESSAGING_DIR)"
30 install -d "$(CRON_DIR)" 30 install -d "$(CRON_DIR)"
31 31
(...skipping 28 matching lines...) Expand all
60 install -m 0644 \ 60 install -m 0644 \
61 "$(BUILD_DIR)/icudtl.dat" "$(INSTALL_DIR)/icudtl.dat" 61 "$(BUILD_DIR)/icudtl.dat" "$(INSTALL_DIR)/icudtl.dat"
62 62
63 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \ 63 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \
64 install "$(BUILD_DIR)/remoting_locales/$$locale" \ 64 install "$(BUILD_DIR)/remoting_locales/$$locale" \
65 "$(INSTALL_DIR)/remoting_locales/$$locale"; \ 65 "$(INSTALL_DIR)/remoting_locales/$$locale"; \
66 done 66 done
67 67
68 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \ 68 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \
69 "$(CRON_DIR)/chrome-remote-desktop" 69 "$(CRON_DIR)/chrome-remote-desktop"
OLDNEW
« no previous file with comments | « remoting/host/constants_mac.cc ('k') | remoting/host/installer/mac/ChromotingHostService.pkgproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698