| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium 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 import("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 1616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1627 } | 1627 } |
| 1628 } | 1628 } |
| 1629 | 1629 |
| 1630 test("pdfium_unittests") { | 1630 test("pdfium_unittests") { |
| 1631 sources = [ | 1631 sources = [ |
| 1632 "core/fpdfapi/font/fpdf_font_cid_unittest.cpp", | 1632 "core/fpdfapi/font/fpdf_font_cid_unittest.cpp", |
| 1633 "core/fpdfapi/font/fpdf_font_unittest.cpp", | 1633 "core/fpdfapi/font/fpdf_font_unittest.cpp", |
| 1634 "core/fpdfapi/page/fpdf_page_parser_old_unittest.cpp", | 1634 "core/fpdfapi/page/fpdf_page_parser_old_unittest.cpp", |
| 1635 "core/fpdfapi/page/fpdf_page_parser_unittest.cpp", | 1635 "core/fpdfapi/page/fpdf_page_parser_unittest.cpp", |
| 1636 "core/fpdfapi/parser/cpdf_array_unittest.cpp", | 1636 "core/fpdfapi/parser/cpdf_array_unittest.cpp", |
| 1637 "core/fpdfapi/parser/cpdf_document_unittest.cpp", | |
| 1638 "core/fpdfapi/parser/cpdf_object_unittest.cpp", | 1637 "core/fpdfapi/parser/cpdf_object_unittest.cpp", |
| 1639 "core/fpdfapi/parser/cpdf_parser_unittest.cpp", | 1638 "core/fpdfapi/parser/cpdf_parser_unittest.cpp", |
| 1640 "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp", | 1639 "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp", |
| 1641 "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp", | 1640 "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp", |
| 1642 "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp", | 1641 "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp", |
| 1643 "core/fpdfdoc/cpdf_filespec_unittest.cpp", | 1642 "core/fpdfdoc/cpdf_filespec_unittest.cpp", |
| 1644 "core/fpdfdoc/cpdf_formfield_unittest.cpp", | 1643 "core/fpdfdoc/cpdf_formfield_unittest.cpp", |
| 1645 "core/fpdftext/fpdf_text_int_unittest.cpp", | 1644 "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1646 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1645 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1647 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", | 1646 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1750 } | 1749 } |
| 1751 | 1750 |
| 1752 if (pdf_is_standalone) { | 1751 if (pdf_is_standalone) { |
| 1753 source_set("samples") { | 1752 source_set("samples") { |
| 1754 testonly = true | 1753 testonly = true |
| 1755 deps = [ | 1754 deps = [ |
| 1756 "//samples", | 1755 "//samples", |
| 1757 ] | 1756 ] |
| 1758 } | 1757 } |
| 1759 } | 1758 } |
| OLD | NEW |