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

Unified Diff: ppapi/examples/filesystem_provider/BUILD.gn

Issue 1093383002: [WIP] Provided file system from NACL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Various cleanups Created 5 years, 7 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: ppapi/examples/filesystem_provider/BUILD.gn
diff --git a/ppapi/examples/filesystem_provider/BUILD.gn b/ppapi/examples/filesystem_provider/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2251262f5376a381cd8b9bfb77b506792ce31e11
--- /dev/null
+++ b/ppapi/examples/filesystem_provider/BUILD.gn
@@ -0,0 +1,26 @@
+# Copyright 2015 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.
+
+import("//ppapi/examples/ppapi_example.gni")
+
+group("filesystem_provider") {
+ testonly = true
+ deps = [
+ ":filesystem_provider",
+ ]
+}
+
+ppapi_example("filesystem_provider") {
+ output_name = "ppapi_example_filesystem_provider"
+ sources = [
+ "filesystem.cc",
+ "inode.cc",
+ "inode.h",
+ "memfilesystem.cc",
+ "memfilesystem.h",
+ ]
+ deps = [
+ "//ppapi/cpp",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698