| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 "//chrome/chrome_watcher", | 165 "//chrome/chrome_watcher", |
| 166 "//chrome/chrome_watcher:client", | 166 "//chrome/chrome_watcher:client", |
| 167 "//chrome/common:constants", | 167 "//chrome/common:constants", |
| 168 "//chrome/common:metrics_constants_util_win", | 168 "//chrome/common:metrics_constants_util_win", |
| 169 "//chrome/install_static:install_static_util", | 169 "//chrome/install_static:install_static_util", |
| 170 "//chrome/installer/util:with_no_strings", | 170 "//chrome/installer/util:with_no_strings", |
| 171 "//chrome_elf", | 171 "//chrome_elf", |
| 172 "//components/browser_watcher:browser_watcher_client", | 172 "//components/browser_watcher:browser_watcher_client", |
| 173 "//components/crash/content/app:run_as_crashpad_handler", | 173 "//components/crash/content/app:run_as_crashpad_handler", |
| 174 "//components/flags_ui:switches", | 174 "//components/flags_ui:switches", |
| 175 "//components/startup_metric_utils/common", | |
| 176 "//content:sandbox_helper_win", | 175 "//content:sandbox_helper_win", |
| 177 "//content/public/common:static_switches", | 176 "//content/public/common:static_switches", |
| 178 "//crypto", | 177 "//crypto", |
| 179 "//sandbox", | 178 "//sandbox", |
| 180 "//ui/gfx", | 179 "//ui/gfx", |
| 181 ] | 180 ] |
| 182 data_deps = [ | 181 data_deps = [ |
| 183 "//chrome/app/version_assembly:version_assembly_manifest", | 182 "//chrome/app/version_assembly:version_assembly_manifest", |
| 184 ] | 183 ] |
| 185 | 184 |
| (...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1236 output = "$target_gen_dir/other_version.rc" | 1235 output = "$target_gen_dir/other_version.rc" |
| 1237 } | 1236 } |
| 1238 | 1237 |
| 1239 source_set("file_pre_reader") { | 1238 source_set("file_pre_reader") { |
| 1240 sources = [ | 1239 sources = [ |
| 1241 "app/file_pre_reader_win.cc", | 1240 "app/file_pre_reader_win.cc", |
| 1242 "app/file_pre_reader_win.h", | 1241 "app/file_pre_reader_win.h", |
| 1243 ] | 1242 ] |
| 1244 deps = [ | 1243 deps = [ |
| 1245 "//base", | 1244 "//base", |
| 1246 "//components/startup_metric_utils/common", | |
| 1247 ] | 1245 ] |
| 1248 } | 1246 } |
| 1249 } | 1247 } |
| 1250 | 1248 |
| 1251 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources | 1249 # GYP version: chrome/chrome_exe.gypi:visual_elements_resources |
| 1252 copy("visual_elements_resources") { | 1250 copy("visual_elements_resources") { |
| 1253 sources = [ | 1251 sources = [ |
| 1254 "//chrome/app/theme/$branding_path_component/win/tiles/Logo.png", | 1252 "//chrome/app/theme/$branding_path_component/win/tiles/Logo.png", |
| 1255 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogo.png", | 1253 "//chrome/app/theme/$branding_path_component/win/tiles/SmallLogo.png", |
| 1256 "app/visual_elements_resources/chrome.VisualElementsManifest.xml", | 1254 "app/visual_elements_resources/chrome.VisualElementsManifest.xml", |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1789 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1787 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1790 "//chrome/tools/build/linux/chrome-wrapper", | 1788 "//chrome/tools/build/linux/chrome-wrapper", |
| 1791 "//third_party/xdg-utils/scripts/xdg-mime", | 1789 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1792 "//third_party/xdg-utils/scripts/xdg-settings", | 1790 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1793 ] | 1791 ] |
| 1794 outputs = [ | 1792 outputs = [ |
| 1795 "$root_out_dir/{{source_file_part}}", | 1793 "$root_out_dir/{{source_file_part}}", |
| 1796 ] | 1794 ] |
| 1797 } | 1795 } |
| 1798 } | 1796 } |
| OLD | NEW |