| 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/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.gni") |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "//chrome/common:metrics_constants_util_win", | 186 "//chrome/common:metrics_constants_util_win", |
| 187 "//chrome/install_static:secondary_module", | 187 "//chrome/install_static:secondary_module", |
| 188 "//chrome/installer/util:with_no_strings", | 188 "//chrome/installer/util:with_no_strings", |
| 189 "//chrome_elf", | 189 "//chrome_elf", |
| 190 "//components/browser_watcher:browser_watcher_client", | 190 "//components/browser_watcher:browser_watcher_client", |
| 191 "//components/crash/content/app:run_as_crashpad_handler", | 191 "//components/crash/content/app:run_as_crashpad_handler", |
| 192 "//components/flags_ui:switches", | 192 "//components/flags_ui:switches", |
| 193 "//content:sandbox_helper_win", | 193 "//content:sandbox_helper_win", |
| 194 "//content/public/common:static_switches", | 194 "//content/public/common:static_switches", |
| 195 "//crypto", | 195 "//crypto", |
| 196 "//gpu/config:crash_keys", |
| 196 "//sandbox", | 197 "//sandbox", |
| 197 ] | 198 ] |
| 198 data_deps = [ | 199 data_deps = [ |
| 199 "//chrome/app/version_assembly:version_assembly_manifest", | 200 "//chrome/app/version_assembly:version_assembly_manifest", |
| 200 ] | 201 ] |
| 201 | 202 |
| 202 if (win_console_app) { | 203 if (win_console_app) { |
| 203 defines += [ "WIN_CONSOLE_APP" ] | 204 defines += [ "WIN_CONSOLE_APP" ] |
| 204 } else { | 205 } else { |
| 205 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build | 206 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build |
| (...skipping 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1682 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1683 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1683 "//chrome/tools/build/linux/chrome-wrapper", | 1684 "//chrome/tools/build/linux/chrome-wrapper", |
| 1684 "//third_party/xdg-utils/scripts/xdg-mime", | 1685 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1685 "//third_party/xdg-utils/scripts/xdg-settings", | 1686 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1686 ] | 1687 ] |
| 1687 outputs = [ | 1688 outputs = [ |
| 1688 "$root_out_dir/{{source_file_part}}", | 1689 "$root_out_dir/{{source_file_part}}", |
| 1689 ] | 1690 ] |
| 1690 } | 1691 } |
| 1691 } | 1692 } |
| OLD | NEW |