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

Side by Side Diff: ui/file_manager/zip_archiver/Makefile.package

Issue 2822673002: Change the copyright from Chromium OS to Chromium. (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « ui/file_manager/zip_archiver/Makefile ('k') | ui/file_manager/zip_archiver/Makefile.pnacl » ('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 2015 The Chromium OS Authors. All rights reserved. 1 # Copyright 2015 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 ifndef PNACL_TARGET 5 ifndef PNACL_TARGET
6 $(error PNACL_TARGET must be set) 6 $(error PNACL_TARGET must be set)
7 endif 7 endif
8 8
9 ifndef PACKAGE_DIR 9 ifndef PACKAGE_DIR
10 $(error PACKAGE_DIR must be set) 10 $(error PACKAGE_DIR must be set)
11 endif 11 endif
(...skipping 10 matching lines...) Expand all
22 cp pnacl/$(PNACL_TARGET)/module.nmf $(PACKAGE_DIR)/ 22 cp pnacl/$(PNACL_TARGET)/module.nmf $(PACKAGE_DIR)/
23 cp pnacl/$(PNACL_TARGET)/module.pexe $(PACKAGE_DIR)/ 23 cp pnacl/$(PNACL_TARGET)/module.pexe $(PACKAGE_DIR)/
24 mkdir -p $(PACKAGE_DIR)/third-party 24 mkdir -p $(PACKAGE_DIR)/third-party
25 cp vulcanized-polymer/* $(PACKAGE_DIR)/third-party/ 25 cp vulcanized-polymer/* $(PACKAGE_DIR)/third-party/
26 zip -q -r $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR)/ 26 zip -q -r $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR)/
27 mv $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR).zip 27 mv $(PACKAGE_DIR).tmp.zip $(PACKAGE_DIR).zip
28 28
29 .PHONY: clean 29 .PHONY: clean
30 clean: 30 clean:
31 rm -rf $(PACKAGE_DIR) $(PACKAGE_DIR).zip 31 rm -rf $(PACKAGE_DIR) $(PACKAGE_DIR).zip
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/Makefile ('k') | ui/file_manager/zip_archiver/Makefile.pnacl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698