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

Side by Side 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, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/mojo_application_manifest.gni")
7
8 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
9 sources = [
10 "profile_app.cc",
11 "profile_app.h",
12 "profile_service_impl.cc",
13 "profile_service_impl.h",
14 ]
15
16 deps = [
17 "//base",
18 "//components/filesystem:lib",
19 "//components/filesystem/public/interfaces",
20 "//components/leveldb:lib",
21 "//components/leveldb/public/interfaces",
22 "//components/profile_service/public/interfaces",
23 "//mojo/common",
24 "//mojo/common:common_base",
25 "//mojo/platform_handle",
26 "//mojo/services/tracing/public/cpp",
27 "//mojo/shell/public/cpp",
28 "//mojo/shell/public/interfaces",
29 "//url",
30 ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698