Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: services/ui/BUILD.gn

Issue 2431753002: Mus experiment in content shell on Android.
Patch Set: Fixed gn check Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698