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

Side by Side Diff: BUILD.gn

Issue 1491363002: Add chrome crash service to GN build on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add is_win Created 5 years 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 | « no previous file | build/buildflag_header.gni » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 } 553 }
554 554
555 if (is_win) { 555 if (is_win) {
556 deps += [ 556 deps += [
557 "//base:pe_image_test", 557 "//base:pe_image_test",
558 "//chrome/installer/setup:setup_unittests", 558 "//chrome/installer/setup:setup_unittests",
559 "//chrome_elf:chrome_elf_unittests", 559 "//chrome_elf:chrome_elf_unittests",
560 "//chrome_elf:dll_hash_main", 560 "//chrome_elf:dll_hash_main",
561 "//cloud_print:cloud_print_unittests", 561 "//cloud_print:cloud_print_unittests",
562 "//cloud_print/service/win:cloud_print_service", 562 "//cloud_print/service/win:cloud_print_service",
563 "//components/crash/content/tools:crash_service",
564 "//components/wifi:wifi_test", 563 "//components/wifi:wifi_test",
565 "//net:quic_client", 564 "//net:quic_client",
566 "//net:quic_server", 565 "//net:quic_server",
567 "//sandbox/win:pocdll", 566 "//sandbox/win:pocdll",
568 "//sandbox/win:sandbox_poc", 567 "//sandbox/win:sandbox_poc",
569 "//sandbox/win:sbox_integration_tests", 568 "//sandbox/win:sbox_integration_tests",
570 "//sandbox/win:sbox_unittests", 569 "//sandbox/win:sbox_unittests",
571 "//sandbox/win:sbox_validation_tests", 570 "//sandbox/win:sbox_validation_tests",
572 "//testing/gtest:gtest_main", 571 "//testing/gtest:gtest_main",
573 "//third_party/codesighs:msmap2tsv", 572 "//third_party/codesighs:msmap2tsv",
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 } else { 777 } else {
779 deps += [ 778 deps += [
780 "//content/shell:content_shell", 779 "//content/shell:content_shell",
781 "//tools/imagediff", 780 "//tools/imagediff",
782 ] 781 ]
783 } 782 }
784 783
785 if (is_win) { 784 if (is_win) {
786 deps += [ 785 deps += [
787 "//components/test_runner:layout_test_helper", 786 "//components/test_runner:layout_test_helper",
788 "//content/shell:crash_service", 787 "//content/shell:content_shell_crash_service",
789 ] 788 ]
790 } 789 }
791 790
792 if (!is_win && !is_android) { 791 if (!is_win && !is_android) {
793 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 792 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
794 } 793 }
795 794
796 if (is_mac) { 795 if (is_mac) {
797 deps += [ 796 deps += [
798 "//breakpad:dump_syms($host_toolchain)", 797 "//breakpad:dump_syms($host_toolchain)",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 deps += [ "//chrome:linux_symbols" ] 836 deps += [ "//chrome:linux_symbols" ]
838 } 837 }
839 838
840 if (!is_chromeos) { 839 if (!is_chromeos) {
841 deps += [ "//tools/perf/clear_system_cache" ] 840 deps += [ "//tools/perf/clear_system_cache" ]
842 } 841 }
843 } 842 }
844 843
845 if (is_win) { 844 if (is_win) {
846 deps += [ 845 deps += [
847 "//content/shell:crash_service", 846 "//chrome/tools/crash_service",
848 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008 847 # "//gpu:angle_perftests", TODO(GYP): crbug.com/537008
849 ] 848 ]
850 849
851 if (target_cpu == "x86") { 850 if (target_cpu == "x86") {
852 deps += [ 851 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
853 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
854 ]
855 } 852 }
856 } else { 853 } else {
857 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 854 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
858 } 855 }
859 } 856 }
860 } 857 }
OLDNEW
« no previous file with comments | « no previous file | build/buildflag_header.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698