| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "//components/browser_watcher:browser_watcher_client", | 139 "//components/browser_watcher:browser_watcher_client", |
| 140 "//components/crash/content/app", | 140 "//components/crash/content/app", |
| 141 "//components/crash/core/common", | 141 "//components/crash/core/common", |
| 142 "//components/flags_ui:switches", | 142 "//components/flags_ui:switches", |
| 143 "//components/startup_metric_utils/common", | 143 "//components/startup_metric_utils/common", |
| 144 "//content:sandbox_helper_win", | 144 "//content:sandbox_helper_win", |
| 145 "//content/public/common:static_switches", | 145 "//content/public/common:static_switches", |
| 146 "//crypto", | 146 "//crypto", |
| 147 "//sandbox", | 147 "//sandbox", |
| 148 "//ui/gfx", | 148 "//ui/gfx", |
| 149 "//win8:visual_elements_resources", |
| 149 "//win8/delegate_execute", | 150 "//win8/delegate_execute", |
| 150 ] | 151 ] |
| 151 data_deps = [ | 152 data_deps = [ |
| 152 "//chrome/app/version_assembly:version_assembly_manifest", | 153 "//chrome/app/version_assembly:version_assembly_manifest", |
| 153 ] | 154 ] |
| 154 | 155 |
| 155 if (win_console_app) { | 156 if (win_console_app) { |
| 156 defines += [ "WIN_CONSOLE_APP" ] | 157 defines += [ "WIN_CONSOLE_APP" ] |
| 157 } else { | 158 } else { |
| 158 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build | 159 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1112 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1112 "//chrome/tools/build/linux/chrome-wrapper", | 1113 "//chrome/tools/build/linux/chrome-wrapper", |
| 1113 "//third_party/xdg-utils/scripts/xdg-mime", | 1114 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1114 "//third_party/xdg-utils/scripts/xdg-settings", | 1115 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1115 ] | 1116 ] |
| 1116 outputs = [ | 1117 outputs = [ |
| 1117 "$root_out_dir/{{source_file_part}}", | 1118 "$root_out_dir/{{source_file_part}}", |
| 1118 ] | 1119 ] |
| 1119 } | 1120 } |
| 1120 } | 1121 } |
| OLD | NEW |