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

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

Issue 10860024: Handle updates to the wrapper script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reinstated spin protection. Created 8 years, 4 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
« no previous file with comments | « no previous file | remoting/host/installer/linux/debian/control » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 = ../../../.. 8 SRC = ../../../..
9 TOOLS = $(SRC)/remoting/tools 9 TOOLS = $(SRC)/remoting/tools
10 RELEASE = $(SRC)/out/Release 10 RELEASE = $(SRC)/out/Release
11 11
12 BIN = $(DESTDIR)/usr/bin 12 BIN = $(DESTDIR)/usr/bin
13 LIB = $(DESTDIR)/usr/lib/chrome-remote-desktop 13 LIB = $(DESTDIR)/usr/lib/chrome-remote-desktop
14 SHARE = $(DESTDIR)/usr/share/chrome-remote-desktop 14 SHARE = $(DESTDIR)/usr/share/chrome-remote-desktop
15 15
16 all: 16 all:
17 17
18 # TODO(lambroslambrou): Decide what to do about bundling Xvfb-randr.
19 # For now, treat it as if it were a build artifact from the Chrome tree, and
20 # pull it from $(RELEASE).
21 install: 18 install:
22 install -d $(BIN) $(LIB) $(SHARE) 19 install -d $(BIN) $(LIB) $(SHARE)
23 install $(TOOLS)/me2me_virtual_host.py -m 0755 \ 20 install $(TOOLS)/me2me_virtual_host.py -m 0755 \
24 $(BIN)/me2me_virtual_host 21 $(BIN)/me2me_virtual_host
25 install $(TOOLS)/gaia_auth.py -m 0644 $(SHARE) 22 install $(TOOLS)/gaia_auth.py -m 0644 $(SHARE)
26 install $(TOOLS)/keygen.py -m 0644 $(SHARE) 23 install $(TOOLS)/keygen.py -m 0644 $(SHARE)
24 install $(TOOLS)/is_me2me_desktop $(LIB)
27 install $(RELEASE)/remoting_host_keygen -m 0755 $(LIB) 25 install $(RELEASE)/remoting_host_keygen -m 0755 $(LIB)
28 install $(RELEASE)/remoting_me2me_host -m 0755 $(LIB) 26 install $(RELEASE)/remoting_me2me_host -m 0755 $(LIB)
OLDNEW
« no previous file with comments | « no previous file | remoting/host/installer/linux/debian/control » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698