OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 | 7 |
8 source_set("lib") { | 8 source_set("lib") { |
9 sources = [ | 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", | 10 "user_id_map.cc", |
15 "user_id_map.h", | 11 "user_id_map.h", |
| 12 "user_service.cc", |
| 13 "user_service.h", |
| 14 "user_shell_client.cc", |
| 15 "user_shell_client.h", |
16 ] | 16 ] |
17 | 17 |
18 deps = [ | 18 deps = [ |
19 "//base", | 19 "//base", |
20 "//components/filesystem:lib", | 20 "//components/filesystem:lib", |
21 "//components/filesystem/public/interfaces", | 21 "//components/filesystem/public/interfaces", |
22 "//components/leveldb:lib", | 22 "//components/leveldb:lib", |
23 "//components/leveldb/public/interfaces", | 23 "//components/leveldb/public/interfaces", |
24 "//components/profile_service/public/interfaces", | |
25 "//mojo/common", | 24 "//mojo/common", |
26 "//mojo/common:common_base", | 25 "//mojo/common:common_base", |
27 "//mojo/message_pump", | 26 "//mojo/message_pump", |
28 "//mojo/platform_handle", | 27 "//mojo/platform_handle", |
29 "//services/shell/public/cpp", | 28 "//services/shell/public/cpp", |
30 "//services/shell/public/interfaces", | 29 "//services/shell/public/interfaces", |
31 "//services/tracing/public/cpp", | 30 "//services/tracing/public/cpp", |
| 31 "//services/user/public/interfaces", |
32 "//url", | 32 "//url", |
33 ] | 33 ] |
34 | 34 |
35 data_deps = [ | 35 data_deps = [ |
36 ":manifest", | 36 ":manifest", |
37 ] | 37 ] |
38 } | 38 } |
39 | 39 |
40 mojo_application_manifest("manifest") { | 40 mojo_application_manifest("manifest") { |
41 application_name = "profile" | 41 application_name = "user" |
42 source = "manifest.json" | 42 source = "manifest.json" |
43 } | 43 } |
OLD | NEW |