| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//services/service_manager/public/constants.gni") | 9 import("//services/service_manager/public/constants.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 outputs = [ | 68 outputs = [ |
| 69 "$root_out_dir/$packages_directory/ui/{{source_file_part}}", | 69 "$root_out_dir/$packages_directory/ui/{{source_file_part}}", |
| 70 ] | 70 ] |
| 71 } | 71 } |
| 72 } | 72 } |
| 73 | 73 |
| 74 source_set("lib") { | 74 source_set("lib") { |
| 75 sources = [ | 75 sources = [ |
| 76 "mojo_ui_application_factory.cc", |
| 77 "mojo_ui_application_factory.h", |
| 76 "service.cc", | 78 "service.cc", |
| 77 "service.h", | 79 "service.h", |
| 78 ] | 80 ] |
| 79 | 81 |
| 80 public_deps = [ | 82 public_deps = [ |
| 81 "//services/ui/common:mus_common", | 83 "//services/ui/common:mus_common", |
| 82 ] | 84 ] |
| 83 deps = [ | 85 deps = [ |
| 84 "//base", | 86 "//base", |
| 85 "//cc", | 87 "//cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 136 |
| 135 repack("resources_200") { | 137 repack("resources_200") { |
| 136 sources = [ | 138 sources = [ |
| 137 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 139 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 138 ] | 140 ] |
| 139 output = "$root_out_dir/mus_app_resources_200.pak" | 141 output = "$root_out_dir/mus_app_resources_200.pak" |
| 140 deps = [ | 142 deps = [ |
| 141 "//ui/resources", | 143 "//ui/resources", |
| 142 ] | 144 ] |
| 143 } | 145 } |
| OLD | NEW |