OLD | NEW |
---|---|
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 "pdfium_test.cc", | 13 "pdfium_test.cc", |
14 "image_diff_png.cc", | |
Lei Zhang
2015/02/05 22:11:08
nit: alphabetical order, ditto elsewhere.
Tom Sepez
2015/02/05 22:58:21
Done.
| |
14 ] | 15 ] |
15 deps = [ | 16 deps = [ |
16 "//third_party/pdfium", | 17 "//third_party/pdfium", |
17 ] | 18 ] |
18 } | 19 } |
OLD | NEW |