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

Unified Diff: components/profile_service/BUILD.gn

Issue 1741953002: mojo: Sketch a profile application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the DownloadManagerImplTests. Created 4 years, 10 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: 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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698