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