OLD | NEW |
---|---|
(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 } | |
OLD | NEW |