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 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1606 ] | 1606 ] |
1607 deps = [ | 1607 deps = [ |
1608 ":pdfium", | 1608 ":pdfium", |
1609 ":test_support", | 1609 ":test_support", |
1610 "//testing/gtest", | 1610 "//testing/gtest", |
1611 "//testing/gtest:gtest_main", | 1611 "//testing/gtest:gtest_main", |
1612 ] | 1612 ] |
1613 include_dirs = [] | 1613 include_dirs = [] |
1614 if (pdf_enable_xfa) { | 1614 if (pdf_enable_xfa) { |
1615 sources += [ | 1615 sources += [ |
| 1616 "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
1616 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", | 1617 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
1617 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", | 1618 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", |
1618 ] | 1619 ] |
1619 } | 1620 } |
1620 if (pdf_enable_v8) { | 1621 if (pdf_enable_v8) { |
1621 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] | 1622 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
1622 include_dirs += [ | 1623 include_dirs += [ |
1623 "//v8", | 1624 "//v8", |
1624 "//v8/include", | 1625 "//v8/include", |
1625 ] | 1626 ] |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 "//v8:v8_libplatform", | 1671 "//v8:v8_libplatform", |
1671 ] | 1672 ] |
1672 include_dirs += [ | 1673 include_dirs += [ |
1673 "//v8", | 1674 "//v8", |
1674 "//v8/include", | 1675 "//v8/include", |
1675 ] | 1676 ] |
1676 configs += [ "//v8:external_startup_data" ] | 1677 configs += [ "//v8:external_startup_data" ] |
1677 } | 1678 } |
1678 configs += [ ":pdfium_config" ] | 1679 configs += [ ":pdfium_config" ] |
1679 } | 1680 } |
OLD | NEW |