Chromium Code Reviews| Index: components/profile_service/BUILD.gn |
| diff --git a/components/profile_service/BUILD.gn b/components/profile_service/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6fd497becf66819bf80191b69b447a0ac4f3b52a |
| --- /dev/null |
| +++ b/components/profile_service/BUILD.gn |
| @@ -0,0 +1,31 @@ |
| +# 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/mojo_application.gni") |
| +import("//mojo/public/mojo_application_manifest.gni") |
| + |
| +source_set("lib") { |
|
Ben Goodger (Google)
2016/03/01 21:56:06
jam, this is an application I think of as ultimate
jam
2016/03/02 17:50:37
agree
|
| + sources = [ |
| + "profile_app.cc", |
| + "profile_app.h", |
| + "profile_service_impl.cc", |
| + "profile_service_impl.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/filesystem:lib", |
| + "//components/filesystem/public/interfaces", |
| + "//components/leveldb:lib", |
| + "//components/leveldb/public/interfaces", |
| + "//components/profile_service/public/interfaces", |
| + "//mojo/common", |
| + "//mojo/common:common_base", |
| + "//mojo/platform_handle", |
| + "//mojo/services/tracing/public/cpp", |
| + "//mojo/shell/public/cpp", |
| + "//mojo/shell/public/interfaces", |
| + "//url", |
| + ] |
| +} |