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

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

Issue 2476663003: PlatformScreenOzone using DisplayManager (Closed)
Patch Set: Add missing data_dep. Created 3 years, 12 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
« no previous file with comments | « no previous file | services/ui/display/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } 121 }
122 122
123 if (use_ozone) { 123 if (use_ozone) {
124 deps += [ "//ui/ozone:ozone" ] 124 deps += [ "//ui/ozone:ozone" ]
125 } 125 }
126 } 126 }
127 127
128 repack("resources_strings") { 128 repack("resources_strings") {
129 sources = [ 129 sources = [
130 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 130 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
131 "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
131 ] 132 ]
132 output = "$root_out_dir/mus_app_resources_strings.pak" 133 output = "$root_out_dir/mus_app_resources_strings.pak"
133 deps = [ 134 deps = [
134 "//ui/strings", 135 "//ui/strings",
135 ] 136 ]
136 } 137 }
137 138
138 repack("resources_100") { 139 repack("resources_100") {
139 sources = [ 140 sources = [
140 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 141 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
141 ] 142 ]
142 output = "$root_out_dir/mus_app_resources_100.pak" 143 output = "$root_out_dir/mus_app_resources_100.pak"
143 deps = [ 144 deps = [
144 "//ui/resources", 145 "//ui/resources",
145 ] 146 ]
146 } 147 }
147 148
148 repack("resources_200") { 149 repack("resources_200") {
149 sources = [ 150 sources = [
150 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", 151 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak",
151 ] 152 ]
152 output = "$root_out_dir/mus_app_resources_200.pak" 153 output = "$root_out_dir/mus_app_resources_200.pak"
153 deps = [ 154 deps = [
154 "//ui/resources", 155 "//ui/resources",
155 ] 156 ]
156 } 157 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/display/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698