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

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

Issue 2782603002: Enable content shell crash integration test on Windows (Closed)
Patch Set: updates Created 3 years, 8 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
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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 "//testing/scripts/content_shell_crash_test.py", 786 "//testing/scripts/content_shell_crash_test.py",
787 "//testing/xvfb.py", 787 "//testing/xvfb.py",
788 ] 788 ]
789 if (is_posix) { 789 if (is_posix) {
790 data += [ 790 data += [
791 "//components/crash/content/tools/generate_breakpad_symbols.py", 791 "//components/crash/content/tools/generate_breakpad_symbols.py",
792 "//components/crash/content/tools/dmp2minidump.py", 792 "//components/crash/content/tools/dmp2minidump.py",
793 ] 793 ]
794 } 794 }
795 if (is_win) { 795 if (is_win) {
796 data_deps += [ ":content_shell_crash_service" ] 796 data_deps += [
797 ":content_shell_crash_service",
798 "//build/win:copy_cdb_to_output",
799 ]
797 } 800 }
798 if (is_posix && !is_android) { 801 if (is_posix && !is_android) {
799 data_deps += [ 802 data_deps += [
800 "//breakpad:dump_syms($host_toolchain)", 803 "//breakpad:dump_syms($host_toolchain)",
801 "//breakpad:minidump_stackwalk($host_toolchain)", 804 "//breakpad:minidump_stackwalk($host_toolchain)",
802 ] 805 ]
803 } 806 }
804 if (is_android) { 807 if (is_android) {
805 data_deps += [ 808 data_deps += [
806 "//breakpad:dump_syms", 809 "//breakpad:dump_syms",
807 "//breakpad:microdump_stackwalk", 810 "//breakpad:microdump_stackwalk",
808 "//breakpad:minidump_dump", 811 "//breakpad:minidump_dump",
809 "//breakpad:minidump_stackwalk", 812 "//breakpad:minidump_stackwalk",
810 "//breakpad:symupload", 813 "//breakpad:symupload",
811 "//tools/android/forwarder2", 814 "//tools/android/forwarder2",
812 ] 815 ]
813 } 816 }
814 } 817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698