OLD | NEW |
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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 "//breakpad:dump_syms($host_toolchain)", | 745 "//breakpad:dump_syms($host_toolchain)", |
746 "//breakpad:minidump_stackwalk($host_toolchain)", | 746 "//breakpad:minidump_stackwalk($host_toolchain)", |
747 "//content/shell/android:content_shell_apk", | 747 "//content/shell/android:content_shell_apk", |
748 ] | 748 ] |
749 } else { | 749 } else { |
750 deps += [ "//content/shell:content_shell" ] | 750 deps += [ "//content/shell:content_shell" ] |
751 } | 751 } |
752 | 752 |
753 if (is_win) { | 753 if (is_win) { |
754 deps += [ | 754 deps += [ |
| 755 "//content/shell:layout_test_helper", |
755 #'../content/content_shell_and_tests.gyp:content_shell_crash_service', T
ODO(GYP) | 756 #'../content/content_shell_and_tests.gyp:content_shell_crash_service', T
ODO(GYP) |
756 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP) | |
757 ] | 757 ] |
758 } | 758 } |
759 | 759 |
760 if (!is_win && !is_android) { | 760 if (!is_win && !is_android) { |
761 deps += [ "//breakpad:minidump_stackwalk" ] | 761 deps += [ "//breakpad:minidump_stackwalk" ] |
762 } | 762 } |
763 | 763 |
764 if (is_mac) { | 764 if (is_mac) { |
765 deps += [ | 765 deps += [ |
766 "//breakpad:dump_syms($host_toolchain)", | 766 "//breakpad:dump_syms($host_toolchain)", |
767 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP) | 767 "//content/shell:layout_test_helper", |
768 ] | 768 ] |
769 } | 769 } |
770 | 770 |
771 if (is_linux) { | 771 if (is_linux) { |
772 deps += [ "//breakpad:dump_syms($host_toolchain)" ] | 772 deps += [ "//breakpad:dump_syms($host_toolchain)" ] |
773 } | 773 } |
774 } | 774 } |
775 } | 775 } |
776 | 776 |
777 if (is_linux) { | 777 if (is_linux) { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 "//ui/views:views_unittests", # TooltipControllerTest failures | 908 "//ui/views:views_unittests", # TooltipControllerTest failures |
909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
910 "//url:url_unittests", # PASSES 4/17/2015 | 910 "//url:url_unittests", # PASSES 4/17/2015 |
911 | 911 |
912 # TODO(GYP) nacl_integration | 912 # TODO(GYP) nacl_integration |
913 # TODO(GYP) telemetry_perf_unittests | 913 # TODO(GYP) telemetry_perf_unittests |
914 # TODO(GYP) telemetry_unittests | 914 # TODO(GYP) telemetry_unittests |
915 ] | 915 ] |
916 } | 916 } |
917 } | 917 } |
OLD | NEW |