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

Side by Side Diff: content/shell/BUILD.gn

Issue 1138653004: content: Port content_shell_crash_service target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « content/content_shell.gypi ('k') | no next file » | 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/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
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 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698