 Chromium Code Reviews
 Chromium Code Reviews Issue 2666503002:
  Make headless_shell target compile for Windows  (Closed)
    
  
    Issue 2666503002:
  Make headless_shell target compile for Windows  (Closed) 
  | OLD | NEW | 
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") | 
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") | 
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") | 
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") | 
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") | 
| 10 | 10 | 
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 361 sources = [ | 361 sources = [ | 
| 362 "app/headless_shell.cc", | 362 "app/headless_shell.cc", | 
| 363 "app/headless_shell_switches.cc", | 363 "app/headless_shell_switches.cc", | 
| 364 "app/headless_shell_switches.h", | 364 "app/headless_shell_switches.h", | 
| 365 "public/headless_shell.h", | 365 "public/headless_shell.h", | 
| 366 ] | 366 ] | 
| 367 | 367 | 
| 368 deps = [ | 368 deps = [ | 
| 369 "//headless:headless_lib", | 369 "//headless:headless_lib", | 
| 370 ] | 370 ] | 
| 371 | |
| 372 configs += [ ":headless_implementation" ] | |
| 371 } | 373 } | 
| 372 | 374 | 
| 373 executable("headless_shell") { | 375 executable("headless_shell") { | 
| 374 sources = [ | 376 sources = [ | 
| 375 "app/headless_shell_main.cc", | 377 "app/headless_shell_main.cc", | 
| 376 ] | 378 ] | 
| 377 | 379 | 
| 378 deps = [ | 380 deps = [ | 
| 379 "//headless:headless_shell_lib", | 381 "//headless:headless_shell_lib", | 
| 380 ] | 382 ] | 
| 383 | |
| 384 configs += [ ":headless_implementation" ] | |
| 385 | |
| 386 if (is_win) { | |
| 
Sami
2017/02/09 17:51:40
Should these go into the headless_lib target since
 
dvallet
2017/02/10 05:29:49
Done
 | |
| 387 deps += [ | |
| 388 "//build/win:default_exe_manifest", | |
| 389 "//content:sandbox_helper_win", | |
| 390 "//sandbox", | |
| 391 ] | |
| 392 } | |
| 381 } | 393 } | 
| OLD | NEW |