Chromium Code Reviews| Index: components/filesystem/public/cpp/prefs/BUILD.gn |
| diff --git a/components/filesystem/public/cpp/prefs/BUILD.gn b/components/filesystem/public/cpp/prefs/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..16c96781bb0e03c459dc9a383a96ea64e3d29b8f |
| --- /dev/null |
| +++ b/components/filesystem/public/cpp/prefs/BUILD.gn |
| @@ -0,0 +1,22 @@ |
| +# Copyright 2016 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("//mojo/public/tools/bindings/mojom.gni") |
|
sky
2016/01/22 22:21:13
You probably don't need this import.
|
| + |
| +source_set("prefs") { |
| + sources = [ |
| + "filesystem_json_pref_store.cc", |
| + "filesystem_json_pref_store.h", |
| + "pref_service_factory.cc", |
| + "pref_service_factory.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//base:prefs", |
| + "//components/filesystem/public/interfaces", |
| + "//mojo/common", |
| + "//mojo/shell/public/cpp", |
| + ] |
| +} |