diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-23 21:15:14 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-23 21:15:14 +0000 |
commit | 938c54d225ac4403b50ec668df9b24d9d388ad4a (patch) | |
tree | 7758d4aa1f8dbd2ff6765dfc56ab6df72760410f /content | |
parent | 19b11b30717d1aa68c5d5e9d238b1d3b7cf8d266 (diff) | |
download | chromium_src-938c54d225ac4403b50ec668df9b24d9d388ad4a.zip chromium_src-938c54d225ac4403b50ec668df9b24d9d388ad4a.tar.gz chromium_src-938c54d225ac4403b50ec668df9b24d9d388ad4a.tar.bz2 |
Add tools/imagediff to GN build.
TBR=scottmg
Review URL: https://codereview.chromium.org/415743003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285042 0039d316-1c4b-4281-b951-d872f2087c98
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)", ] } } |