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", | 10 "profile_app.cc", |
11 "profile_app.h", | 11 "profile_app.h", |
12 "profile_service_impl.cc", | 12 "profile_service_impl.cc", |
13 "profile_service_impl.h", | 13 "profile_service_impl.h", |
14 ] | 14 ] |
15 | 15 |
16 deps = [ | 16 deps = [ |
17 "//base", | 17 "//base", |
18 "//components/filesystem:lib", | 18 "//components/filesystem:lib", |
19 "//components/filesystem/public/interfaces", | 19 "//components/filesystem/public/interfaces", |
20 "//components/leveldb:lib", | |
21 "//components/leveldb/public/interfaces", | |
22 "//components/profile_service/public/interfaces", | 20 "//components/profile_service/public/interfaces", |
23 "//mojo/common", | 21 "//mojo/common", |
24 "//mojo/common:common_base", | 22 "//mojo/common:common_base", |
25 "//mojo/platform_handle", | 23 "//mojo/platform_handle", |
26 "//mojo/services/tracing/public/cpp", | 24 "//mojo/services/tracing/public/cpp", |
27 "//mojo/shell/public/cpp", | 25 "//mojo/shell/public/cpp", |
28 "//mojo/shell/public/interfaces", | 26 "//mojo/shell/public/interfaces", |
29 "//url", | 27 "//url", |
30 ] | 28 ] |
31 } | 29 } |
OLD | NEW |