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

Side by Side Diff: BUILD.gn

Issue 1118863002: Port Chromium's blink_tests target to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 deps = [ 704 deps = [
705 # "//build/config/sanitizers:options_sources", 705 # "//build/config/sanitizers:options_sources",
706 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? 706 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
707 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? 707 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
708 # "//ui/resources:repack_ui_test_mac_locale_pack", 708 # "//ui/resources:repack_ui_test_mac_locale_pack",
709 # "//v8:v8_snapshot", # TODO(GYP): visibility? 709 # "//v8:v8_snapshot", # TODO(GYP): visibility?
710 # "//v8:postmortem-metadata", # TODO(GYP): visibility? 710 # "//v8:postmortem-metadata", # TODO(GYP): visibility?
711 ] 711 ]
712 } 712 }
713 713
714 if (!is_ios) {
715 group("blink_tests") {
716 testonly = true
717
718 deps = [
719 "//third_party/WebKit/public:blink_tests",
720 ]
721
722 if (is_android) {
723 deps += [
724 "//content/shell/android:content_shell_apk",
725 #'../breakpad/breakpad.gyp:dump_syms#host',
Dirk Pranke 2015/04/30 22:42:27 why are all these deps commented out? most of them
tfarina 2015/04/30 22:54:25 Does GN handles the #host part transparently? If n
726 #'../breakpad/breakpad.gyp:minidump_stackwalk#host',
727 ]
728 } else {
729 deps += [ "//content/shell:content_shell" ]
730 }
731
732 if (is_win) {
733 deps += [
734 #'../content/content_shell_and_tests.gyp:content_shell_crash_service',
735 #'../content/content_shell_and_tests.gyp:layout_test_helper',
736 ]
737 }
738
739 if (!is_win && !is_android) {
740 deps += [ "//breakpad:minidump_stackwalk" ]
741 }
742
743 if (is_mac) {
744 deps += [
745 #'../breakpad/breakpad.gyp:dump_syms#host',
746 #'../content/content_shell_and_tests.gyp:layout_test_helper',
747 ]
748 }
749
750 if (is_linux) {
751 deps += [
752 #'../breakpad/breakpad.gyp:dump_syms#host'
753 ]
754 }
755 }
756 }
757
714 if (is_linux) { 758 if (is_linux) {
715 # This group corresponds to the list of tests run on the waterfall for 759 # This group corresponds to the list of tests run on the waterfall for
716 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's 760 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
717 # here to help track GYP -> GN conversion progress. 761 # here to help track GYP -> GN conversion progress.
718 group("linux_default_tests") { 762 group("linux_default_tests") {
719 testonly = true 763 testonly = true
720 deps = [ 764 deps = [
721 "//base:base_unittests", # PASSES (*) 2/25/2015 765 "//base:base_unittests", # PASSES (*) 2/25/2015
722 "//cc:cc_unittests", # PASSES 2/25/2015 766 "//cc:cc_unittests", # PASSES 2/25/2015
723 "//chrome/test:browser_tests", 767 "//chrome/test:browser_tests",
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 "//ui/views:views_unittests", # TooltipControllerTest failures 887 "//ui/views:views_unittests", # TooltipControllerTest failures
844 "//ui/wm:wm_unittests", # PASSES 4/21/2015 888 "//ui/wm:wm_unittests", # PASSES 4/21/2015
845 "//url:url_unittests", # PASSES 4/17/2015 889 "//url:url_unittests", # PASSES 4/17/2015
846 890
847 # TODO(GYP) nacl_integration 891 # TODO(GYP) nacl_integration
848 # TODO(GYP) telemetry_perf_unittests 892 # TODO(GYP) telemetry_perf_unittests
849 # TODO(GYP) telemetry_unittests 893 # TODO(GYP) telemetry_unittests
850 ] 894 ]
851 } 895 }
852 } 896 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698