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

Unified Diff: ui/file_manager/zip_archiver/unpacker/Makefile.package

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 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
Index: ui/file_manager/zip_archiver/unpacker/Makefile.package
diff --git a/ui/file_manager/zip_archiver/unpacker/Makefile.package b/ui/file_manager/zip_archiver/unpacker/Makefile.package
deleted file mode 100644
index 4e0074c32bbffe383e092783696bb06c41232549..0000000000000000000000000000000000000000
--- a/ui/file_manager/zip_archiver/unpacker/Makefile.package
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2015 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.
-
-ifndef PNACL_TARGET
-$(error PNACL_TARGET must be set)
-endif
-
-ifndef PACKAGE_DIR
-$(error PACKAGE_DIR must be set)
-endif
-
-all:
- rm -rf $(PACKAGE_DIR)
- mkdir -p $(PACKAGE_DIR)
- cp -r js $(PACKAGE_DIR)/js
- cp -r icons $(PACKAGE_DIR)/icons
- cp -r html $(PACKAGE_DIR)/html
- cp -r css $(PACKAGE_DIR)/css
- cp -r _locales $(PACKAGE_DIR)/_locales
- cp manifest.json $(PACKAGE_DIR)/
- cp pnacl/$(PNACL_TARGET)/module.nmf $(PACKAGE_DIR)/
- cp pnacl/$(PNACL_TARGET)/module.pexe $(PACKAGE_DIR)/
- mkdir -p $(PACKAGE_DIR)/third-party
- cp vulcanized-polymer/* $(PACKAGE_DIR)/third-party/
- zip -q -r $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR)/
- mv $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR).zip
-
-.PHONY: clean
-clean:
- rm -rf $(PACKAGE_DIR) $(PACKAGE_DIR).zip
« no previous file with comments | « ui/file_manager/zip_archiver/unpacker/Makefile ('k') | ui/file_manager/zip_archiver/unpacker/Makefile.pnacl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698