Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Unified Diff: tools/imagediff/BUILD.gn

Issue 415743003: Add tools/imagediff to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: host Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
]
}
« no previous file with comments | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698