commit | d80ab10ecaa1039887b2c0ba37de0bf702d651f9 | [log] [tgz] |
---|---|---|
author | Patrik Höglund <[email protected]> | Wed Feb 14 09:46:28 2018 |
committer | Commit Bot <[email protected]> | Wed Feb 14 09:46:28 2018 |
tree | 1445674774b7c7c8031e52a088f2b88acf36a0fd | |
parent | 80343dd58eb8652708a6b7693dd11d6a3eb222f0 [diff] [blame] |
Wrap empty_main with not is_clang. This target is only needed by the GCC bot anyway. I hope this will green up the clang ToT bots. [email protected] Bug: chromium:811764 Change-Id: Icd1d12f52387adc9b1b81d50f4cb75dc3f3b8694 Reviewed-on: https://chromium-review.googlesource.com/918441 Reviewed-by: Patrik Höglund <[email protected]> Reviewed-by: Hans Wennborg <[email protected]> Commit-Queue: Patrik Höglund <[email protected]> Cr-Commit-Position: refs/heads/master@{#536689}
diff --git a/BUILD.gn b/BUILD.gn index d488d53..74e66305 100644 --- a/BUILD.gn +++ b/BUILD.gn
@@ -394,9 +394,12 @@ "//net:quic_server", "//sandbox/linux:chrome_sandbox", "//sandbox/linux:sandbox_linux_unittests", - "//testing:empty_main", ] + if (!is_clang) { + deps += [ "//testing:empty_main" ] + } + if (use_dbus) { deps += [ "//dbus:dbus_test_server",