Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: chrome/BUILD.gn

Issue 2624343002: Get headless_shell building on Windows. (Closed)
Patch Set: Rebased on top of master (this time no CRLF) Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « AUTHORS ('k') | headless/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "//chrome/install_static:secondary_module", 185 "//chrome/install_static:secondary_module",
186 "//chrome/installer/util:with_no_strings", 186 "//chrome/installer/util:with_no_strings",
187 "//chrome_elf", 187 "//chrome_elf",
188 "//components/browser_watcher:browser_watcher_client", 188 "//components/browser_watcher:browser_watcher_client",
189 "//components/crash/content/app:run_as_crashpad_handler", 189 "//components/crash/content/app:run_as_crashpad_handler",
190 "//components/flags_ui:switches", 190 "//components/flags_ui:switches",
191 "//content:sandbox_helper_win", 191 "//content:sandbox_helper_win",
192 "//content/public/common:static_switches", 192 "//content/public/common:static_switches",
193 "//crypto", 193 "//crypto",
194 "//sandbox", 194 "//sandbox",
195
196 # For headless mode.
dvallet 2017/03/01 02:40:39 This is breaking the component_build, and it requi
197 "//headless:headless_shell_lib",
195 ] 198 ]
196 data_deps = [ 199 data_deps = [
197 "//chrome/app/version_assembly:version_assembly_manifest", 200 "//chrome/app/version_assembly:version_assembly_manifest",
198 ] 201 ]
199 202
200 if (win_console_app) { 203 if (win_console_app) {
201 defines += [ "WIN_CONSOLE_APP" ] 204 defines += [ "WIN_CONSOLE_APP" ]
202 } else { 205 } else {
203 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build 206 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, unless a console build
204 # has been requested. 207 # has been requested.
(...skipping 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after
1657 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1660 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1658 "//chrome/tools/build/linux/chrome-wrapper", 1661 "//chrome/tools/build/linux/chrome-wrapper",
1659 "//third_party/xdg-utils/scripts/xdg-mime", 1662 "//third_party/xdg-utils/scripts/xdg-mime",
1660 "//third_party/xdg-utils/scripts/xdg-settings", 1663 "//third_party/xdg-utils/scripts/xdg-settings",
1661 ] 1664 ]
1662 outputs = [ 1665 outputs = [
1663 "$root_out_dir/{{source_file_part}}", 1666 "$root_out_dir/{{source_file_part}}",
1664 ] 1667 ]
1665 } 1668 }
1666 } 1669 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | headless/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698