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_config") { | 9 config("pdfium_config") { |
10 cflags = [] | 10 cflags = [] |
(...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1638 ":pdfium", | 1638 ":pdfium", |
1639 ":test_support", | 1639 ":test_support", |
1640 "//testing/gtest", | 1640 "//testing/gtest", |
1641 "//testing/gtest:gtest_main", | 1641 "//testing/gtest:gtest_main", |
1642 ] | 1642 ] |
1643 include_dirs = [] | 1643 include_dirs = [] |
1644 if (pdf_enable_xfa) { | 1644 if (pdf_enable_xfa) { |
1645 sources += [ | 1645 sources += [ |
1646 "xfa/fde/xml/fde_xml_imp_unittest.cpp", | 1646 "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
1647 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", | 1647 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
| 1648 "xfa/fxfa/app/xfa_textlayout_unittest.cpp", |
1648 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", | 1649 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", |
1649 ] | 1650 ] |
1650 } | 1651 } |
1651 if (pdf_enable_v8) { | 1652 if (pdf_enable_v8) { |
1652 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] | 1653 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
1653 include_dirs += [ | 1654 include_dirs += [ |
1654 "//v8", | 1655 "//v8", |
1655 "//v8/include", | 1656 "//v8/include", |
1656 ] | 1657 ] |
1657 } | 1658 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1711 } | 1712 } |
1712 | 1713 |
1713 if (pdf_is_standalone) { | 1714 if (pdf_is_standalone) { |
1714 source_set("samples") { | 1715 source_set("samples") { |
1715 testonly = true | 1716 testonly = true |
1716 deps = [ | 1717 deps = [ |
1717 "//samples", | 1718 "//samples", |
1718 ] | 1719 ] |
1719 } | 1720 } |
1720 } | 1721 } |
OLD | NEW |