diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/shell/BUILD.gn | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn index f6e7f4f..cc60ec7 100644 --- a/content/shell/BUILD.gn +++ b/content/shell/BUILD.gn @@ -453,9 +453,10 @@ executable("content_shell") { } if (!is_android || !is_android_webview_build) { - deps += [ - # NOTE: rely on host build of this target. - #'../tools/imagediff/image_diff.gyp:image_diff', TODO(GYP) + # Some tests rely on this tool. It might be nicer if these tests relied on + # image diff rather than having content shell depend on it. + datadeps = [ + "//tools/imagediff($host_toolchain)", ] } } |