Chromium Code Reviews| Index: tools/imagediff/BUILD.gn |
| diff --git a/chrome/plugin/BUILD.gn b/tools/imagediff/BUILD.gn |
| similarity index 55% |
| copy from chrome/plugin/BUILD.gn |
| copy to tools/imagediff/BUILD.gn |
| index 76e4109793243aa9990a9a8ae88c48e3b3a1fb2c..d5983ece9f5b62ab27200bb343fb18019e6a38b0 100644 |
| --- a/chrome/plugin/BUILD.gn |
| +++ b/tools/imagediff/BUILD.gn |
| @@ -2,17 +2,19 @@ |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| -static_library("plugin") { |
| +executable("imagediff") { |
| + output_name = "image_dirr" # Different than dir nam for historical reasons. |
|
scottmg
2014/07/23 20:41:30
image_dirr or image_diff?
and "name" in comment.
|
| sources = [ |
| - "chrome_content_plugin_client.cc", |
| - "chrome_content_plugin_client.h", |
| + "image_diff.cc", |
| + "image_diff_png.h", |
| + "image_diff_png.cc", |
| ] |
| configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| deps = [ |
| "//base", |
| - "//chrome:strings", |
| - "//content/public/plugin", |
| + "//third_party/libpng", |
| + "//third_party/zlib", |
| ] |
| } |