Chromium Code Reviews| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 125 "//ppapi/examples/threading", | 125 "//ppapi/examples/threading", |
| 126 "//ppapi/examples/url_loader", | 126 "//ppapi/examples/url_loader", |
| 127 "//ppapi/examples/video_capture", | 127 "//ppapi/examples/video_capture", |
| 128 "//ppapi/examples/video_decode", | 128 "//ppapi/examples/video_decode", |
| 129 "//ppapi/examples/video_effects", | 129 "//ppapi/examples/video_effects", |
| 130 "//ppapi/examples/video_encode", | 130 "//ppapi/examples/video_encode", |
| 131 "//printing:printing_unittests", | 131 "//printing:printing_unittests", |
| 132 "//skia:skia_unittests", | 132 "//skia:skia_unittests", |
| 133 "//sql:sql_unittests", | 133 "//sql:sql_unittests", |
| 134 "//sync:sync_unit_tests", | 134 "//sync:sync_unit_tests", |
| 135 "//third_party/WebKit/public:blink_tests", | 135 "//third_party/WebKit/public:blink_tests", |
|
tfarina
2015/05/07 01:56:56
Dirk, is it fine to keep this here?
Dirk Pranke
2015/05/07 01:58:38
No, we should either list the underlying binaries
| |
| 136 "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 136 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 137 "//third_party/codesighs", | 137 "//third_party/codesighs", |
| 138 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", | 138 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", |
| 139 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", | 139 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", |
| 140 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", | 140 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", |
| 141 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", | 141 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", |
| 142 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", | 142 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
| 143 "//third_party/pdfium/samples:pdfium_test", | 143 "//third_party/pdfium/samples:pdfium_test", |
| 144 "//third_party/smhasher:pmurhash", | 144 "//third_party/smhasher:pmurhash", |
| 145 "//tools/imagediff($host_toolchain)", | 145 "//tools/imagediff($host_toolchain)", |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 712 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? | 712 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? |
| 713 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? | 713 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? |
| 714 | 714 |
| 715 "//ui/resources:repack_ui_test_mac_locale_pack", | 715 "//ui/resources:repack_ui_test_mac_locale_pack", |
| 716 | 716 |
| 717 # "//v8:v8_snapshot", # TODO(GYP): visibility? | 717 # "//v8:v8_snapshot", # TODO(GYP): visibility? |
| 718 # "//v8:postmortem-metadata", # TODO(GYP): visibility? | 718 # "//v8:postmortem-metadata", # TODO(GYP): visibility? |
| 719 ] | 719 ] |
| 720 } | 720 } |
| 721 | 721 |
| 722 if (!is_ios) { | |
| 723 group("blink_tests") { | |
| 724 testonly = true | |
| 725 | |
| 726 deps = [ | |
| 727 "//third_party/WebKit/Source/platform:heap_unittests", | |
| 728 "//third_party/WebKit/Source/platform:platform_unittests", | |
| 729 "//third_party/WebKit/Source/web:webkit_unit_tests", | |
| 730 "//third_party/WebKit/Source/wtf:wtf_unittests", | |
| 731 ] | |
| 732 | |
| 733 if (is_android) { | |
| 734 deps += [ | |
| 735 "//breakpad:dump_syms($host_toolchain)", | |
| 736 "//breakpad:minidump_stackwalk($host_toolchain)", | |
| 737 "//content/shell/android:content_shell_apk", | |
| 738 ] | |
| 739 } else { | |
| 740 deps += [ "//content/shell:content_shell" ] | |
| 741 } | |
| 742 | |
| 743 if (is_win) { | |
| 744 deps += [ | |
| 745 #'../content/content_shell_and_tests.gyp:content_shell_crash_service', T ODO(GYP) | |
| 746 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP) | |
| 747 ] | |
| 748 } | |
| 749 | |
| 750 if (!is_win && !is_android) { | |
| 751 deps += [ "//breakpad:minidump_stackwalk" ] | |
| 752 } | |
| 753 | |
| 754 if (is_mac) { | |
| 755 deps += [ | |
| 756 "//breakpad:dump_syms($host_toolchain)", | |
| 757 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP) | |
| 758 ] | |
| 759 | |
| 760 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. | |
| 761 deps -= [ | |
| 762 "//third_party/WebKit/Source/platform:heap_unittests", | |
| 763 "//third_party/WebKit/Source/platform:platform_unittests", | |
| 764 "//third_party/WebKit/Source/web:webkit_unit_tests", | |
| 765 ] | |
| 766 } | |
| 767 | |
| 768 if (is_linux) { | |
| 769 deps += [ "//breakpad:dump_syms($host_toolchain)" ] | |
| 770 } | |
| 771 } | |
| 772 } | |
| 773 | |
| 722 if (is_linux) { | 774 if (is_linux) { |
| 723 # This group corresponds to the list of tests run on the waterfall for | 775 # This group corresponds to the list of tests run on the waterfall for |
| 724 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's | 776 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's |
| 725 # here to help track GYP -> GN conversion progress. | 777 # here to help track GYP -> GN conversion progress. |
| 726 group("linux_default_tests") { | 778 group("linux_default_tests") { |
| 727 testonly = true | 779 testonly = true |
| 728 deps = [ | 780 deps = [ |
| 729 "//base:base_unittests", # PASSES (*) 2/25/2015 | 781 "//base:base_unittests", # PASSES (*) 2/25/2015 |
| 730 "//cc:cc_unittests", # PASSES 2/25/2015 | 782 "//cc:cc_unittests", # PASSES 2/25/2015 |
| 731 "//chrome/test:browser_tests", | 783 "//chrome/test:browser_tests", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 853 "//ui/views:views_unittests", # TooltipControllerTest failures | 905 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 854 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 906 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 855 "//url:url_unittests", # PASSES 4/17/2015 | 907 "//url:url_unittests", # PASSES 4/17/2015 |
| 856 | 908 |
| 857 # TODO(GYP) nacl_integration | 909 # TODO(GYP) nacl_integration |
| 858 # TODO(GYP) telemetry_perf_unittests | 910 # TODO(GYP) telemetry_perf_unittests |
| 859 # TODO(GYP) telemetry_unittests | 911 # TODO(GYP) telemetry_unittests |
| 860 ] | 912 ] |
| 861 } | 913 } |
| 862 } | 914 } |
| OLD | NEW |