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

Unified Diff: src/platform/chrome/debian/rules

Issue 1521015: build: Delete files from the previous build system. (Closed)
Patch Set: merge Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform/chrome/debian/postinst ('k') | src/platform/chrome/make_pkg.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/chrome/debian/rules
diff --git a/src/platform/chrome/debian/rules b/src/platform/chrome/debian/rules
deleted file mode 100755
index bbfe28ce90f81d3465c3252c25f065b97be21adb..0000000000000000000000000000000000000000
--- a/src/platform/chrome/debian/rules
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-%:
- dh $@
-
-DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-override_dh_auto_build:
- ./copy_chrome_zip.sh -a $(DEB_HOST_ARCH)
-
-override_dh_auto_install:
- # (note: use ./dirs file instead of mkdir -p here)
- # Unzip chrome-linux.zip into chrome/
- unzip $(CURDIR)/chrome-chromeos.zip
- # We may need to rename .../chrome-linux to chrome-chromeos
- mv $(CURDIR)/chrome-linux $(CURDIR)/chrome-chromeos || true
- mkdir $(CURDIR)/chrome-chromeos/plugins
- mv $(CURDIR)/chrome-chromeos \
- $(CURDIR)/debian/chromeos-chrome/opt/google/chrome
-
-override_dh_install:
- dh_install
- # Make the script use "google-chrome" instead of "chromium" for
- # official builds.
- if [ "$(USE_RELEASE_CHROME)" = "1" ]; then \
- perl -pi -le '$$_ = "PROFILE_DIR=google-chrome" if /^PROFILE_DIR=/' \
- $(CURDIR)/debian/chromeos-chrome/usr/bin/chromeos-chrome-loop; \
- fi
-
-override_dh_shlibdeps:
- # Don't scan shlibs for dependencies, since the chroot environment
- # doesn't have all the packages installed to run chrome.
« no previous file with comments | « src/platform/chrome/debian/postinst ('k') | src/platform/chrome/make_pkg.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698