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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 157d6195163cb84ad0d2eb8c827d2c2a33e1e45a..22a89adc178acd52a11a1b13954521cf3050b210 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -711,6 +711,50 @@ group("gn_visibility") {
]
}
+if (!is_ios) {
+ group("blink_tests") {
+ testonly = true
+
+ deps = [
+ "//third_party/WebKit/public:blink_tests",
+ ]
+
+ if (is_android) {
+ deps += [
+ "//content/shell/android:content_shell_apk",
+ #'../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
+ #'../breakpad/breakpad.gyp:minidump_stackwalk#host',
+ ]
+ } else {
+ deps += [ "//content/shell:content_shell" ]
+ }
+
+ if (is_win) {
+ deps += [
+ #'../content/content_shell_and_tests.gyp:content_shell_crash_service',
+ #'../content/content_shell_and_tests.gyp:layout_test_helper',
+ ]
+ }
+
+ if (!is_win && !is_android) {
+ deps += [ "//breakpad:minidump_stackwalk" ]
+ }
+
+ if (is_mac) {
+ deps += [
+ #'../breakpad/breakpad.gyp:dump_syms#host',
+ #'../content/content_shell_and_tests.gyp:layout_test_helper',
+ ]
+ }
+
+ if (is_linux) {
+ deps += [
+ #'../breakpad/breakpad.gyp:dump_syms#host'
+ ]
+ }
+ }
+}
+
if (is_linux) {
# This group corresponds to the list of tests run on the waterfall for
# desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
« 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