| OLD | NEW |
| 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 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 deps = [ | 1244 deps = [ |
| 1245 "//base", | 1245 "//base", |
| 1246 "//components/startup_metric_utils/common", | 1246 "//components/startup_metric_utils/common", |
| 1247 ] | 1247 ] |
| 1248 } | 1248 } |
| 1249 } | 1249 } |
| 1250 | 1250 |
| 1251 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources | 1251 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources |
| 1252 copy("visual_elements_resources") { | 1252 copy("visual_elements_resources") { |
| 1253 sources = [ | 1253 sources = [ |
| 1254 "app/visual_elements_resources/Logo.png", | 1254 "//chrome/app/theme/$branding_path_component/win/tiles/Logo.png", |
| 1255 "app/visual_elements_resources/SecondaryTile.png", | 1255 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogo.png", |
| 1256 "app/visual_elements_resources/SmallLogo.png", | |
| 1257 "app/visual_elements_resources/chrome.VisualElementsManifest.xml", | 1256 "app/visual_elements_resources/chrome.VisualElementsManifest.xml", |
| 1258 ] | 1257 ] |
| 1259 | 1258 |
| 1259 if (is_chrome_branded) { |
| 1260 sources += [ |
| 1261 "//chrome/app/theme/$branding_path_component/win/tiles/LogoCanary.png", |
| 1262 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogoCanary.png
", |
| 1263 ] |
| 1264 } |
| 1265 |
| 1260 outputs = [ | 1266 outputs = [ |
| 1261 "$root_out_dir/{{source_file_part}}", | 1267 "$root_out_dir/{{source_file_part}}", |
| 1262 ] | 1268 ] |
| 1263 } | 1269 } |
| 1264 | 1270 |
| 1265 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 1271 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 1266 group("resources") { | 1272 group("resources") { |
| 1267 public_deps = [ | 1273 public_deps = [ |
| 1268 # Note: GYP lists some dependencies in addition to these actions. However, | 1274 # Note: GYP lists some dependencies in addition to these actions. However, |
| 1269 # these are just dependencies for the actions themselves, which our actions | 1275 # these are just dependencies for the actions themselves, which our actions |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1783 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1789 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1784 "//chrome/tools/build/linux/chrome-wrapper", | 1790 "//chrome/tools/build/linux/chrome-wrapper", |
| 1785 "//third_party/xdg-utils/scripts/xdg-mime", | 1791 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1786 "//third_party/xdg-utils/scripts/xdg-settings", | 1792 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1787 ] | 1793 ] |
| 1788 outputs = [ | 1794 outputs = [ |
| 1789 "$root_out_dir/{{source_file_part}}", | 1795 "$root_out_dir/{{source_file_part}}", |
| 1790 ] | 1796 ] |
| 1791 } | 1797 } |
| 1792 } | 1798 } |
| OLD | NEW |