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

Side by Side Diff: samples/BUILD.gn

Issue 870203005: XFA: Support PNG format in pdfium_test and add image diffing (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Update other write... routines to use common function. Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | samples/image_diff.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 group("samples") { 5 group("samples") {
6 deps = [ 6 deps = [
7 ":pdfium_test", 7 ":pdfium_test",
8 ] 8 ]
9 } 9 }
10 10
11 executable("pdfium_test") { 11 executable("pdfium_test") {
12 sources = [ 12 sources = [
13 "image_diff_png.cc",
13 "pdfium_test.cc", 14 "pdfium_test.cc",
14 ] 15 ]
15 deps = [ 16 deps = [
16 "//third_party/pdfium", 17 "//third_party/pdfium",
17 ] 18 ]
18 } 19 }
20
21 executable("pdfium_diff") {
22 sources = [
23 "image_diff.cc",
24 "image_diff_png.cc",
25 "image_diff_png.h",
26 ]
27 deps = [
28 "//third_party/pdfium",
29 ]
30 }
OLDNEW
« no previous file with comments | « no previous file | samples/image_diff.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698