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

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: host_toolchain 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 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/public:blink_tests",
728 ]
729
730 if (is_android) {
731 deps += [
732 "//breakpad:dump_syms($host_toolchain)",
733 "//breakpad:minidump_stackwalk($host_toolchain)",
734 "//content/shell/android:content_shell_apk",
735 ]
736 } else {
737 deps += [ "//content/shell:content_shell" ]
738 }
739
740 if (is_win) {
741 deps += [
742 #'../content/content_shell_and_tests.gyp:content_shell_crash_service',
743 #'../content/content_shell_and_tests.gyp:layout_test_helper',
Dirk Pranke 2015/05/01 19:55:03 maybe add TODO(GYP)'s for these?
tfarina 2015/05/01 21:32:31 Done.
744 ]
745 }
746
747 if (!is_win && !is_android) {
748 deps += [ "//breakpad:minidump_stackwalk" ]
749 }
750
751 if (is_mac) {
752 deps += [
753 "//breakpad:dump_syms($host_toolchain)",
754 #'../content/content_shell_and_tests.gyp:layout_test_helper',
755 ]
756 }
757
758 if (is_linux) {
759 deps += [
760 "//breakpad:dump_syms($host_toolchain)",
761 #'../breakpad/breakpad.gyp:dump_syms#host'
Dirk Pranke 2015/05/01 19:55:03 I think you can delete line 761, right?
tfarina 2015/05/01 21:32:31 Done.
762 ]
763 }
764 }
765 }
766
722 if (is_linux) { 767 if (is_linux) {
723 # This group corresponds to the list of tests run on the waterfall for 768 # 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 769 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
725 # here to help track GYP -> GN conversion progress. 770 # here to help track GYP -> GN conversion progress.
726 group("linux_default_tests") { 771 group("linux_default_tests") {
727 testonly = true 772 testonly = true
728 deps = [ 773 deps = [
729 "//base:base_unittests", # PASSES (*) 2/25/2015 774 "//base:base_unittests", # PASSES (*) 2/25/2015
730 "//cc:cc_unittests", # PASSES 2/25/2015 775 "//cc:cc_unittests", # PASSES 2/25/2015
731 "//chrome/test:browser_tests", 776 "//chrome/test:browser_tests",
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 "//ui/views:views_unittests", # TooltipControllerTest failures 896 "//ui/views:views_unittests", # TooltipControllerTest failures
852 "//ui/wm:wm_unittests", # PASSES 4/21/2015 897 "//ui/wm:wm_unittests", # PASSES 4/21/2015
853 "//url:url_unittests", # PASSES 4/17/2015 898 "//url:url_unittests", # PASSES 4/17/2015
854 899
855 # TODO(GYP) nacl_integration 900 # TODO(GYP) nacl_integration
856 # TODO(GYP) telemetry_perf_unittests 901 # TODO(GYP) telemetry_perf_unittests
857 # TODO(GYP) telemetry_unittests 902 # TODO(GYP) telemetry_unittests
858 ] 903 ]
859 } 904 }
860 } 905 }
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