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

Side by Side Diff: chrome/BUILD.gn

Issue 2253323002: Add a Canary-specific icon in VisualElementsManifest.xml (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 deps = [ 1261 deps = [
1262 "//base", 1262 "//base",
1263 "//components/startup_metric_utils/common", 1263 "//components/startup_metric_utils/common",
1264 ] 1264 ]
1265 } 1265 }
1266 } 1266 }
1267 1267
1268 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources 1268 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources
1269 copy("visual_elements_resources") { 1269 copy("visual_elements_resources") {
1270 sources = [ 1270 sources = [
1271 "app/visual_elements_resources/Logo.png", 1271 "//chrome/app/theme/$branding_path_component/win/tiles/Logo.png",
scottmg 2016/08/24 20:35:41 There's a separate internal CL that will have to l
1272 "app/visual_elements_resources/SecondaryTile.png", 1272 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogo.png",
1273 "app/visual_elements_resources/SmallLogo.png",
1274 "app/visual_elements_resources/chrome.VisualElementsManifest.xml", 1273 "app/visual_elements_resources/chrome.VisualElementsManifest.xml",
1275 ] 1274 ]
1276 1275
1276 if (is_chrome_branded) {
1277 sources += [
1278 "//chrome/app/theme/$branding_path_component/win/tiles/LogoCanary.png",
1279 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogoCanary.png ",
1280 ]
1281 }
1282
1277 outputs = [ 1283 outputs = [
1278 "$root_out_dir/{{source_file_part}}", 1284 "$root_out_dir/{{source_file_part}}",
1279 ] 1285 ]
1280 } 1286 }
1281 1287
1282 # GYP version: chrome/chrome_resources.gyp:chrome_resources 1288 # GYP version: chrome/chrome_resources.gyp:chrome_resources
1283 group("resources") { 1289 group("resources") {
1284 public_deps = [ 1290 public_deps = [
1285 # Note: GYP lists some dependencies in addition to these actions. However, 1291 # Note: GYP lists some dependencies in addition to these actions. However,
1286 # these are just dependencies for the actions themselves, which our actions 1292 # these are just dependencies for the actions themselves, which our actions
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1805 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1800 "//chrome/tools/build/linux/chrome-wrapper", 1806 "//chrome/tools/build/linux/chrome-wrapper",
1801 "//third_party/xdg-utils/scripts/xdg-mime", 1807 "//third_party/xdg-utils/scripts/xdg-mime",
1802 "//third_party/xdg-utils/scripts/xdg-settings", 1808 "//third_party/xdg-utils/scripts/xdg-settings",
1803 ] 1809 ]
1804 outputs = [ 1810 outputs = [
1805 "$root_out_dir/{{source_file_part}}", 1811 "$root_out_dir/{{source_file_part}}",
1806 ] 1812 ]
1807 } 1813 }
1808 } 1814 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/theme/chromium/win/tiles/Logo.png » ('j') | chrome/installer/mini_installer/chrome.release » ('J')

Powered by Google App Engine
This is Rietveld 408576698