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/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
548 sources = [ | 548 sources = [ |
549 "renderer/test_runner/helper/layout_test_helper_mac.mm", | 549 "renderer/test_runner/helper/layout_test_helper_mac.mm", |
550 "renderer/test_runner/helper/layout_test_helper_win.cc", | 550 "renderer/test_runner/helper/layout_test_helper_win.cc", |
551 ] | 551 ] |
552 | 552 |
553 if (is_mac) { | 553 if (is_mac) { |
554 libs = [ "AppKit.framework" ] | 554 libs = [ "AppKit.framework" ] |
555 } | 555 } |
556 } | 556 } |
557 } | 557 } |
558 | |
559 if (is_win) { | |
560 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service | |
561 executable("content_shell_crash_service") { | |
562 sources = [ | |
563 "tools/content_shell_crash_service.cc", | |
564 ] | |
565 | |
566 deps = [ | |
567 "//base", | |
568 "//components/crash/tools:crash_service", | |
569 ] | |
570 | |
571 #'msvs_settings': { | |
572 # 'VCLinkerTool': { | |
573 # 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
574 # }, | |
575 #}, | |
Dirk Pranke
2015/05/13 23:42:44
You get the equivalent of these msvs_settings by a
tfarina
2015/05/14 00:23:08
Done.
| |
576 } | |
577 } | |
OLD | NEW |