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 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1571 "//testing/gtest", | 1571 "//testing/gtest", |
1572 "//testing/gtest:gtest_main", | 1572 "//testing/gtest:gtest_main", |
1573 ] | 1573 ] |
1574 include_dirs = [] | 1574 include_dirs = [] |
1575 if (pdf_enable_xfa) { | 1575 if (pdf_enable_xfa) { |
1576 sources += [ | 1576 sources += [ |
1577 "xfa/fde/css/fde_cssdatatable_unittest.cpp", | 1577 "xfa/fde/css/fde_cssdatatable_unittest.cpp", |
1578 "xfa/fde/xml/fde_xml_imp_unittest.cpp", | 1578 "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
1579 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", | 1579 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
1580 "xfa/fxfa/app/xfa_textlayout_unittest.cpp", | 1580 "xfa/fxfa/app/xfa_textlayout_unittest.cpp", |
| 1581 "xfa/fxfa/fm2js/xfa_simpleexpression_unittest.cpp", |
1581 "xfa/fxfa/parser/xfa_utils_unittest.cpp", | 1582 "xfa/fxfa/parser/xfa_utils_unittest.cpp", |
1582 ] | 1583 ] |
1583 } | 1584 } |
1584 if (pdf_use_skia) { | 1585 if (pdf_use_skia) { |
1585 sources += [ "core/fxge/skia/fx_skia_device_unittest.cpp" ] | 1586 sources += [ "core/fxge/skia/fx_skia_device_unittest.cpp" ] |
1586 deps += [ "//skia" ] | 1587 deps += [ "//skia" ] |
1587 } | 1588 } |
1588 if (pdf_enable_v8) { | 1589 if (pdf_enable_v8) { |
1589 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] | 1590 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
1590 include_dirs += [ | 1591 include_dirs += [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1651 } | 1652 } |
1652 | 1653 |
1653 if (pdf_is_standalone) { | 1654 if (pdf_is_standalone) { |
1654 source_set("samples") { | 1655 source_set("samples") { |
1655 testonly = true | 1656 testonly = true |
1656 deps = [ | 1657 deps = [ |
1657 "//samples", | 1658 "//samples", |
1658 ] | 1659 ] |
1659 } | 1660 } |
1660 } | 1661 } |
OLD | NEW |