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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 "//breakpad:dump_syms($host_toolchain)", | 741 "//breakpad:dump_syms($host_toolchain)", |
742 "//breakpad:minidump_stackwalk($host_toolchain)", | 742 "//breakpad:minidump_stackwalk($host_toolchain)", |
743 "//content/shell/android:content_shell_apk", | 743 "//content/shell/android:content_shell_apk", |
744 ] | 744 ] |
745 } else { | 745 } else { |
746 deps += [ "//content/shell:content_shell" ] | 746 deps += [ "//content/shell:content_shell" ] |
747 } | 747 } |
748 | 748 |
749 if (is_win) { | 749 if (is_win) { |
750 deps += [ | 750 deps += [ |
| 751 "//components/test_runner:layout_test_helper", |
751 "//content/shell:crash_service", | 752 "//content/shell:crash_service", |
752 "//content/shell:layout_test_helper", | |
753 ] | 753 ] |
754 } | 754 } |
755 | 755 |
756 if (!is_win && !is_android) { | 756 if (!is_win && !is_android) { |
757 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 757 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
758 } | 758 } |
759 | 759 |
760 if (is_mac) { | 760 if (is_mac) { |
761 deps += [ | 761 deps += [ |
762 "//breakpad:dump_syms($host_toolchain)", | 762 "//breakpad:dump_syms($host_toolchain)", |
763 "//content/shell:layout_test_helper", | 763 "//components/test_runner:layout_test_helper", |
764 ] | 764 ] |
765 } | 765 } |
766 | 766 |
767 if (is_linux) { | 767 if (is_linux) { |
768 deps += [ "//breakpad:dump_syms($host_toolchain)" ] | 768 deps += [ "//breakpad:dump_syms($host_toolchain)" ] |
769 } | 769 } |
770 } | 770 } |
771 } | 771 } |
772 | 772 |
773 if (is_linux) { | 773 if (is_linux) { |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 "//ui/views:views_unittests", # TooltipControllerTest failures | 903 "//ui/views:views_unittests", # TooltipControllerTest failures |
904 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 904 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
905 "//url:url_unittests", # PASSES 4/17/2015 | 905 "//url:url_unittests", # PASSES 4/17/2015 |
906 | 906 |
907 # TODO(GYP) nacl_integration | 907 # TODO(GYP) nacl_integration |
908 # TODO(GYP) telemetry_perf_unittests | 908 # TODO(GYP) telemetry_perf_unittests |
909 # TODO(GYP) telemetry_unittests | 909 # TODO(GYP) telemetry_unittests |
910 ] | 910 ] |
911 } | 911 } |
912 } | 912 } |
OLD | NEW |