Chromium Code Reviews| Index: BUILD.gn |
| diff --git a/BUILD.gn b/BUILD.gn |
| index 7f497fa984a3f977d502f857473a953adc45e8da..0eca77359aed95b291b13993c7609fd9fa5e42c8 100644 |
| --- a/BUILD.gn |
| +++ b/BUILD.gn |
| @@ -719,6 +719,51 @@ group("gn_visibility") { |
| ] |
| } |
| +if (!is_ios) { |
| + group("blink_tests") { |
| + testonly = true |
| + |
| + deps = [ |
| + "//third_party/WebKit/public:blink_tests", |
| + ] |
| + |
| + if (is_android) { |
| + deps += [ |
| + "//breakpad:dump_syms($host_toolchain)", |
| + "//breakpad:minidump_stackwalk($host_toolchain)", |
| + "//content/shell/android:content_shell_apk", |
| + ] |
| + } 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', |
|
Dirk Pranke
2015/05/01 19:55:03
maybe add TODO(GYP)'s for these?
tfarina
2015/05/01 21:32:31
Done.
|
| + ] |
| + } |
| + |
| + if (!is_win && !is_android) { |
| + deps += [ "//breakpad:minidump_stackwalk" ] |
| + } |
| + |
| + if (is_mac) { |
| + deps += [ |
| + "//breakpad:dump_syms($host_toolchain)", |
| + #'../content/content_shell_and_tests.gyp:layout_test_helper', |
| + ] |
| + } |
| + |
| + if (is_linux) { |
| + deps += [ |
| + "//breakpad:dump_syms($host_toolchain)", |
| + #'../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.
|
| + ] |
| + } |
| + } |
| +} |
| + |
| 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 |