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

Side by Side Diff: chrome/chrome_paks.gni

Issue 2811633002: Include headless resources in Mac OS (Closed)
Patch Set: Add resources only for mac and linux for now 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 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) { 160 if (is_linux || is_mac) {
161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ] 161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ]
162 deps += [ "//headless:resources" ] 162 deps += [ "//headless:resources" ]
163 } 163 }
164 if (enable_extensions) { 164 if (enable_extensions) {
165 sources += [ 165 sources += [
166 "$root_gen_dir/extensions/extensions_renderer_resources.pak", 166 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
167 "$root_gen_dir/extensions/extensions_resources.pak", 167 "$root_gen_dir/extensions/extensions_resources.pak",
168 ] 168 ]
169 deps += [ "//extensions:extensions_resources" ] 169 deps += [ "//extensions:extensions_resources" ]
170 } 170 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ":${target_name}_locales", 266 ":${target_name}_locales",
267 ] 267 ]
268 if (enable_hidpi) { 268 if (enable_hidpi) {
269 public_deps += [ ":${target_name}_200_percent" ] 269 public_deps += [ ":${target_name}_200_percent" ]
270 } 270 }
271 if (defined(invoker.public_deps)) { 271 if (defined(invoker.public_deps)) {
272 public_deps += invoker.public_deps 272 public_deps += invoker.public_deps
273 } 273 }
274 } 274 }
275 } 275 }
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