| 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("//services/shell/public/cpp/service.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//services/shell/public/service_manifest.gni") |
| 7 | 7 |
| 8 source_set("lib") { | 8 source_set("lib") { |
| 9 sources = [ | 9 sources = [ |
| 10 "user_id_map.cc", | 10 "user_id_map.cc", |
| 11 "user_id_map.h", | 11 "user_id_map.h", |
| 12 "user_service.cc", | 12 "user_service.cc", |
| 13 "user_service.h", | 13 "user_service.h", |
| 14 "user_shell_client.cc", | 14 "user_shell_client.cc", |
| 15 "user_shell_client.h", | 15 "user_shell_client.h", |
| 16 ] | 16 ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 "//services/tracing/public/cpp", | 28 "//services/tracing/public/cpp", |
| 29 "//services/user/public/interfaces", | 29 "//services/user/public/interfaces", |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 data_deps = [ | 33 data_deps = [ |
| 34 ":manifest", | 34 ":manifest", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 mojo_application_manifest("manifest") { | 38 service_manifest("manifest") { |
| 39 application_name = "user" | 39 name = "user" |
| 40 source = "manifest.json" | 40 source = "manifest.json" |
| 41 } | 41 } |
| OLD | NEW |