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

Side by Side Diff: chrome/chrome_paks.gni

Issue 2576413002: chrome: Include headless resources (Closed)
Patch Set: Add TODO Created 4 years 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 | headless/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 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 if (is_chromeos) { 150 if (is_chromeos) {
151 sources += [ 151 sources += [
152 "$root_gen_dir/components/chrome_apps/chrome_apps_resources.pak", 152 "$root_gen_dir/components/chrome_apps/chrome_apps_resources.pak",
153 "$root_gen_dir/ui/file_manager/file_manager_resources.pak", 153 "$root_gen_dir/ui/file_manager/file_manager_resources.pak",
154 ] 154 ]
155 deps += [ 155 deps += [
156 "//components/chrome_apps:resources", 156 "//components/chrome_apps:resources",
157 "//ui/file_manager:resources", 157 "//ui/file_manager:resources",
158 ] 158 ]
159 } 159 }
160 if (is_linux) {
161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ]
162 deps += [ "//headless:resources" ]
163 }
160 if (enable_extensions) { 164 if (enable_extensions) {
161 sources += [ 165 sources += [
162 "$root_gen_dir/extensions/extensions_renderer_resources.pak", 166 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
163 "$root_gen_dir/extensions/extensions_resources.pak", 167 "$root_gen_dir/extensions/extensions_resources.pak",
164 ] 168 ]
165 deps += [ "//extensions:extensions_resources" ] 169 deps += [ "//extensions:extensions_resources" ]
166 } 170 }
167 } 171 }
168 } 172 }
169 173
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 ":${target_name}_locales", 262 ":${target_name}_locales",
259 ] 263 ]
260 if (enable_hidpi) { 264 if (enable_hidpi) {
261 public_deps += [ ":${target_name}_200_percent" ] 265 public_deps += [ ":${target_name}_200_percent" ]
262 } 266 }
263 if (defined(invoker.public_deps)) { 267 if (defined(invoker.public_deps)) {
264 public_deps += invoker.public_deps 268 public_deps += invoker.public_deps
265 } 269 }
266 } 270 }
267 } 271 }
OLDNEW
« no previous file with comments | « no previous file | headless/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698