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

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

Issue 10826227: Split Xvfb-randr into separate package from Virtual Me2Me Debian package (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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. 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 19 # For now, treat it as if it were a build artifact from the Chrome tree, and
20 # pull it from $(RELEASE). 20 # pull it from $(RELEASE).
21 install: 21 install:
22 install -d $(BIN) $(LIB) $(SHARE) 22 install -d $(BIN) $(LIB) $(SHARE)
23 install $(TOOLS)/me2me_virtual_host.py -m 0755 \ 23 install $(TOOLS)/me2me_virtual_host.py -m 0755 \
24 $(BIN)/me2me_virtual_host 24 $(BIN)/me2me_virtual_host
25 install $(TOOLS)/gaia_auth.py -m 0644 $(SHARE) 25 install $(TOOLS)/gaia_auth.py -m 0644 $(SHARE)
26 install $(TOOLS)/keygen.py -m 0644 $(SHARE) 26 install $(TOOLS)/keygen.py -m 0644 $(SHARE)
27 install $(RELEASE)/Xvfb-randr -m 0755 $(BIN)
28 install $(RELEASE)/remoting_host_keygen -m 0755 $(LIB) 27 install $(RELEASE)/remoting_host_keygen -m 0755 $(LIB)
29 install $(RELEASE)/remoting_me2me_host -m 0755 $(LIB) 28 install $(RELEASE)/remoting_me2me_host -m 0755 $(LIB)
OLDNEW
« no previous file with comments | « no previous file | remoting/host/installer/linux/debian/control » ('j') | remoting/host/installer/linux/debian/control » ('J')

Powered by Google App Engine
This is Rietveld 408576698