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

Side by Side Diff: components/profile_service/BUILD.gn

Issue 1879233002: Move components\profile_service to services\user (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move3
Patch Set: . Created 4 years, 8 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
« no previous file with comments | « no previous file | components/profile_service/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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") {
9 sources = [
10 "profile_app.cc",
11 "profile_app.h",
12 "profile_service_impl.cc",
13 "profile_service_impl.h",
14 "user_id_map.cc",
15 "user_id_map.h",
16 ]
17
18 deps = [
19 "//base",
20 "//components/filesystem:lib",
21 "//components/filesystem/public/interfaces",
22 "//components/leveldb:lib",
23 "//components/leveldb/public/interfaces",
24 "//components/profile_service/public/interfaces",
25 "//mojo/common",
26 "//mojo/common:common_base",
27 "//mojo/message_pump",
28 "//mojo/platform_handle",
29 "//services/shell/public/cpp",
30 "//services/shell/public/interfaces",
31 "//services/tracing/public/cpp",
32 "//url",
33 ]
34
35 data_deps = [
36 ":manifest",
37 ]
38 }
39
40 mojo_application_manifest("manifest") {
41 application_name = "profile"
42 source = "manifest.json"
43 }
OLDNEW
« no previous file with comments | « no previous file | components/profile_service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698