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

Unified Diff: ui/file_manager/zip_archiver/cpp/BUILD.gn

Issue 2808993003: Build ZIP archiver in ui/file_manager. (Closed)
Patch Set: Temporally disabled zip packing from the context menu. 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
« no previous file with comments | « ui/file_manager/zip_archiver/BUILD.gn ('k') | ui/file_manager/zip_archiver/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/zip_archiver/cpp/BUILD.gn
diff --git a/ui/file_manager/zip_archiver/cpp/BUILD.gn b/ui/file_manager/zip_archiver/cpp/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..38c7a8c1b8a20566ddc87323b254e925c123eb66
--- /dev/null
+++ b/ui/file_manager/zip_archiver/cpp/BUILD.gn
@@ -0,0 +1,38 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+executable("zip_archiver_pnacl") {
+ sources = [
+ "compressor.cc",
+ "compressor.h",
+ "compressor_archive.h",
+ "compressor_archive_libarchive.cc",
+ "compressor_archive_libarchive.h",
+ "compressor_io_javascript_stream.cc",
+ "compressor_io_javascript_stream.h",
+ "compressor_stream.h",
+ "javascript_compressor_requestor_interface.h",
+ "javascript_message_sender_interface.h",
+ "javascript_requestor_interface.h",
+ "module.cc",
+ "request.cc",
+ "request.h",
+ "volume.cc",
+ "volume.h",
+ "volume_archive.h",
+ "volume_archive_libarchive.cc",
+ "volume_archive_libarchive.h",
+ "volume_reader.h",
+ "volume_reader_javascript_stream.cc",
+ "volume_reader_javascript_stream.h",
+ ]
+
+ deps = [
+ "//base:base",
+ "//build/config/sanitizers:deps",
+ "//ppapi/cpp",
+ "//ppapi/native_client:ppapi_lib",
+ "//third_party/zlib:minizip",
+ ]
+}
« no previous file with comments | « ui/file_manager/zip_archiver/BUILD.gn ('k') | ui/file_manager/zip_archiver/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698