| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # 'chrome_nacl_win64" TODO(GYP) bug 512869 | 129 # 'chrome_nacl_win64" TODO(GYP) bug 512869 |
| 130 "//base", | 130 "//base", |
| 131 "//breakpad:breakpad_handler", | 131 "//breakpad:breakpad_handler", |
| 132 "//breakpad:breakpad_sender", | 132 "//breakpad:breakpad_sender", |
| 133 "//chrome/app/version_assembly:chrome_exe_manifest", | 133 "//chrome/app/version_assembly:chrome_exe_manifest", |
| 134 "//chrome/browser:chrome_process_finder", | 134 "//chrome/browser:chrome_process_finder", |
| 135 "//chrome/chrome_watcher", | 135 "//chrome/chrome_watcher", |
| 136 "//chrome/chrome_watcher:client", | 136 "//chrome/chrome_watcher:client", |
| 137 "//chrome/common:constants", | 137 "//chrome/common:constants", |
| 138 "//chrome/common:metrics_constants_util_win", | 138 "//chrome/common:metrics_constants_util_win", |
| 139 "//chrome/install_static:install_static_util", | |
| 140 "//chrome/installer/util:with_no_strings", | 139 "//chrome/installer/util:with_no_strings", |
| 141 "//chrome_elf", | 140 "//chrome_elf", |
| 142 "//components/browser_watcher:browser_watcher_client", | 141 "//components/browser_watcher:browser_watcher_client", |
| 143 "//components/crash/content/app", | 142 "//components/crash/content/app", |
| 144 "//components/crash/core/common", | 143 "//components/crash/core/common", |
| 145 "//components/flags_ui:switches", | 144 "//components/flags_ui:switches", |
| 146 "//components/startup_metric_utils/common", | 145 "//components/startup_metric_utils/common", |
| 147 "//content:sandbox_helper_win", | 146 "//content:sandbox_helper_win", |
| 148 "//content/public/common:static_switches", | 147 "//content/public/common:static_switches", |
| 149 "//crypto", | 148 "//crypto", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "//third_party/cld_2", | 308 "//third_party/cld_2", |
| 310 ] | 309 ] |
| 311 if (is_win) { | 310 if (is_win) { |
| 312 output_name = "chrome" | 311 output_name = "chrome" |
| 313 | 312 |
| 314 deps += [ | 313 deps += [ |
| 315 ":chrome_dll_manifest", | 314 ":chrome_dll_manifest", |
| 316 ":chrome_dll_version", | 315 ":chrome_dll_version", |
| 317 "//base/trace_event/etw_manifest:chrome_events_win", | 316 "//base/trace_event/etw_manifest:chrome_events_win", |
| 318 "//chrome/app/theme:chrome_unscaled_resources", | 317 "//chrome/app/theme:chrome_unscaled_resources", |
| 319 "//chrome/install_static:install_static_util", | |
| 320 "//chrome_elf", | 318 "//chrome_elf", |
| 321 "//components/crash/content/app", | 319 "//components/crash/content/app", |
| 322 "//components/policy", | 320 "//components/policy", |
| 323 "//content/app/resources", | 321 "//content/app/resources", |
| 324 "//crypto", | 322 "//crypto", |
| 325 "//net:net_resources", | 323 "//net:net_resources", |
| 326 "//third_party/wtl", | 324 "//third_party/wtl", |
| 327 "//ui/views", | 325 "//ui/views", |
| 328 ] | 326 ] |
| 329 if (current_cpu == "x86") { | 327 if (current_cpu == "x86") { |
| (...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1093 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1096 "//chrome/tools/build/linux/chrome-wrapper", | 1094 "//chrome/tools/build/linux/chrome-wrapper", |
| 1097 "//third_party/xdg-utils/scripts/xdg-mime", | 1095 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1098 "//third_party/xdg-utils/scripts/xdg-settings", | 1096 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1099 ] | 1097 ] |
| 1100 outputs = [ | 1098 outputs = [ |
| 1101 "$root_out_dir/{{source_file_part}}", | 1099 "$root_out_dir/{{source_file_part}}", |
| 1102 ] | 1100 ] |
| 1103 } | 1101 } |
| 1104 } | 1102 } |
| OLD | NEW |