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

Side by Side Diff: chrome/chrome_paks.gni

Issue 2839553002: Add headless resources to Windows platform, now that's enabled (Closed)
Patch Set: moved dependencies to non android builds Created 3 years, 8 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/config/locales.gni") 5 import("//build/config/locales.gni")
6 import("//chrome/common/features.gni") 6 import("//chrome/common/features.gni")
7 import("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 import("chrome_repack_locales.gni") 9 import("chrome_repack_locales.gni")
10 10
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 } 131 }
132 132
133 if (!is_android) { 133 if (!is_android) {
134 # New paks should be added here by default. 134 # New paks should be added here by default.
135 sources += [ 135 sources += [
136 "$root_gen_dir/chrome/component_extension_resources.pak", 136 "$root_gen_dir/chrome/component_extension_resources.pak",
137 "$root_gen_dir/chrome/options_resources.pak", 137 "$root_gen_dir/chrome/options_resources.pak",
138 "$root_gen_dir/chrome/settings_resources.pak", 138 "$root_gen_dir/chrome/settings_resources.pak",
139 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak", 139 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak",
140 "$root_gen_dir/content/browser/devtools/devtools_resources.pak", 140 "$root_gen_dir/content/browser/devtools/devtools_resources.pak",
141 "$root_gen_dir/headless/headless_lib_resources.pak",
141 ] 142 ]
142 deps += [ 143 deps += [
143 "//chrome/browser/resources:component_extension_resources", 144 "//chrome/browser/resources:component_extension_resources",
144 "//chrome/browser/resources:options_resources", 145 "//chrome/browser/resources:options_resources",
145 "//chrome/browser/resources:settings_resources", 146 "//chrome/browser/resources:settings_resources",
146 "//chrome/browser/resources:sync_file_system_internals_resources", 147 "//chrome/browser/resources:sync_file_system_internals_resources",
147 "//content/browser/devtools:devtools_resources", 148 "//content/browser/devtools:devtools_resources",
149 "//headless:resources",
148 ] 150 ]
149 } 151 }
150 if (is_chromeos) { 152 if (is_chromeos) {
151 sources += [ 153 sources += [
152 "$root_gen_dir/components/chrome_apps/chrome_apps_resources.pak", 154 "$root_gen_dir/components/chrome_apps/chrome_apps_resources.pak",
153 "$root_gen_dir/ui/file_manager/file_manager_resources.pak", 155 "$root_gen_dir/ui/file_manager/file_manager_resources.pak",
154 ] 156 ]
155 deps += [ 157 deps += [
156 "//components/chrome_apps:resources", 158 "//components/chrome_apps:resources",
157 "//ui/file_manager:resources", 159 "//ui/file_manager:resources",
158 ] 160 ]
159 } 161 }
160 if (is_linux || is_mac) {
161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ]
162 deps += [ "//headless:resources" ]
163 }
164 if (enable_extensions) { 162 if (enable_extensions) {
165 sources += [ 163 sources += [
166 "$root_gen_dir/extensions/extensions_renderer_resources.pak", 164 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
167 "$root_gen_dir/extensions/extensions_resources.pak", 165 "$root_gen_dir/extensions/extensions_resources.pak",
168 ] 166 ]
169 deps += [ "//extensions:extensions_resources" ] 167 deps += [ "//extensions:extensions_resources" ]
170 } 168 }
171 if (is_android) { 169 if (is_android) {
172 sources += [ "$root_gen_dir/chrome/webapks_ui_resources.pak" ] 170 sources += [ "$root_gen_dir/chrome/webapks_ui_resources.pak" ]
173 deps += [ "//chrome/browser/resources:webapks_ui_resources" ] 171 deps += [ "//chrome/browser/resources:webapks_ui_resources" ]
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ":${target_name}_locales", 264 ":${target_name}_locales",
267 ] 265 ]
268 if (enable_hidpi) { 266 if (enable_hidpi) {
269 public_deps += [ ":${target_name}_200_percent" ] 267 public_deps += [ ":${target_name}_200_percent" ]
270 } 268 }
271 if (defined(invoker.public_deps)) { 269 if (defined(invoker.public_deps)) {
272 public_deps += invoker.public_deps 270 public_deps += invoker.public_deps
273 } 271 }
274 } 272 }
275 } 273 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698