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

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

Issue 2786823002: hackhack test jochen cl
Patch Set: . 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:copy_cdb_to_output",
799 ]
800
801 # TODO(GYP): These should be provided automatically through data_deps.
802 data += [ "$root_out_dir/content_shell.exe.pdb" ]
803 if (is_component_build) {
804 data += [
805 "$root_out_dir/base.dll.pdb",
806 "$root_out_dir/blink_platform.dll.pdb",
807 "$root_out_dir/blink_web.dll.pdb",
808 "$root_out_dir/content.dll.pdb",
809 ]
810 }
797 } 811 }
798 if (is_posix && !is_android) { 812 if (is_posix && !is_android) {
799 data_deps += [ 813 data_deps += [
800 "//breakpad:dump_syms($host_toolchain)", 814 "//breakpad:dump_syms($host_toolchain)",
801 "//breakpad:minidump_stackwalk($host_toolchain)", 815 "//breakpad:minidump_stackwalk($host_toolchain)",
802 ] 816 ]
803 } 817 }
804 if (is_android) { 818 if (is_android) {
805 data_deps += [ 819 data_deps += [
806 "//breakpad:dump_syms", 820 "//breakpad:dump_syms",
807 "//breakpad:microdump_stackwalk", 821 "//breakpad:microdump_stackwalk",
808 "//breakpad:minidump_dump", 822 "//breakpad:minidump_dump",
809 "//breakpad:minidump_stackwalk", 823 "//breakpad:minidump_stackwalk",
810 "//breakpad:symupload", 824 "//breakpad:symupload",
811 "//tools/android/forwarder2", 825 "//tools/android/forwarder2",
812 ] 826 ]
813 } 827 }
814 } 828 }
OLDNEW
« no previous file with comments | « build/win/copy_cdb_to_output/copy_cdb_to_output.py ('k') | content/shell/tools/breakpad_integration_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698