| 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",
|
| + ]
|
| +}
|
|
|