| 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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1727 "core/fxcrt/fx_basic_gcc_unittest.cpp", | 1727 "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1728 "core/fxcrt/fx_basic_memmgr_unittest.cpp", | 1728 "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1729 "core/fxcrt/fx_basic_util_unittest.cpp", | 1729 "core/fxcrt/fx_basic_util_unittest.cpp", |
| 1730 "core/fxcrt/fx_basic_wstring_unittest.cpp", | 1730 "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1731 "core/fxcrt/fx_bidi_unittest.cpp", | 1731 "core/fxcrt/fx_bidi_unittest.cpp", |
| 1732 "core/fxcrt/fx_extension_unittest.cpp", | 1732 "core/fxcrt/fx_extension_unittest.cpp", |
| 1733 "core/fxcrt/fx_system_unittest.cpp", | 1733 "core/fxcrt/fx_system_unittest.cpp", |
| 1734 "core/fxge/dib/fx_dib_engine_unittest.cpp", | 1734 "core/fxge/dib/fx_dib_engine_unittest.cpp", |
| 1735 "fpdfsdk/fpdfdoc_unittest.cpp", | 1735 "fpdfsdk/fpdfdoc_unittest.cpp", |
| 1736 "fpdfsdk/fpdfeditimg_unittest.cpp", | 1736 "fpdfsdk/fpdfeditimg_unittest.cpp", |
| 1737 "fpdfsdk/fpdfview_unittest.cpp", |
| 1737 ] | 1738 ] |
| 1738 deps = [ | 1739 deps = [ |
| 1739 ":pdfium", | 1740 ":pdfium", |
| 1740 ":test_support", | 1741 ":test_support", |
| 1741 "//testing/gtest", | 1742 "//testing/gtest", |
| 1742 "//testing/gtest:gtest_main", | 1743 "//testing/gtest:gtest_main", |
| 1743 ] | 1744 ] |
| 1744 include_dirs = [] | 1745 include_dirs = [] |
| 1745 if (pdf_enable_xfa) { | 1746 if (pdf_enable_xfa) { |
| 1746 sources += [ | 1747 sources += [ |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1833 "//samples", | 1834 "//samples", |
| 1834 ] | 1835 ] |
| 1835 } | 1836 } |
| 1836 group("fuzzers") { | 1837 group("fuzzers") { |
| 1837 testonly = true | 1838 testonly = true |
| 1838 deps = [ | 1839 deps = [ |
| 1839 "//testing/libfuzzer", | 1840 "//testing/libfuzzer", |
| 1840 ] | 1841 ] |
| 1841 } | 1842 } |
| 1842 } | 1843 } |
| OLD | NEW |