| 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 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 "core/fxcrt/cfx_retain_ptr_unittest.cpp", | 1557 "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
| 1558 "core/fxcrt/fx_basic_bstring_unittest.cpp", | 1558 "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1559 "core/fxcrt/fx_basic_gcc_unittest.cpp", | 1559 "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1560 "core/fxcrt/fx_basic_memmgr_unittest.cpp", | 1560 "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1561 "core/fxcrt/fx_basic_util_unittest.cpp", | 1561 "core/fxcrt/fx_basic_util_unittest.cpp", |
| 1562 "core/fxcrt/fx_basic_wstring_unittest.cpp", | 1562 "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1563 "core/fxcrt/fx_bidi_unittest.cpp", | 1563 "core/fxcrt/fx_bidi_unittest.cpp", |
| 1564 "core/fxcrt/fx_extension_unittest.cpp", | 1564 "core/fxcrt/fx_extension_unittest.cpp", |
| 1565 "core/fxcrt/fx_system_unittest.cpp", | 1565 "core/fxcrt/fx_system_unittest.cpp", |
| 1566 "fpdfsdk/fpdfdoc_unittest.cpp", | 1566 "fpdfsdk/fpdfdoc_unittest.cpp", |
| 1567 "fpdfsdk/fpdfeditimg_unittest.cpp", |
| 1567 ] | 1568 ] |
| 1568 deps = [ | 1569 deps = [ |
| 1569 ":pdfium", | 1570 ":pdfium", |
| 1570 ":test_support", | 1571 ":test_support", |
| 1571 "//testing/gtest", | 1572 "//testing/gtest", |
| 1572 "//testing/gtest:gtest_main", | 1573 "//testing/gtest:gtest_main", |
| 1573 ] | 1574 ] |
| 1574 include_dirs = [] | 1575 include_dirs = [] |
| 1575 if (pdf_enable_xfa) { | 1576 if (pdf_enable_xfa) { |
| 1576 sources += [ | 1577 sources += [ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1652 } | 1653 } |
| 1653 | 1654 |
| 1654 if (pdf_is_standalone) { | 1655 if (pdf_is_standalone) { |
| 1655 source_set("samples") { | 1656 source_set("samples") { |
| 1656 testonly = true | 1657 testonly = true |
| 1657 deps = [ | 1658 deps = [ |
| 1658 "//samples", | 1659 "//samples", |
| 1659 ] | 1660 ] |
| 1660 } | 1661 } |
| 1661 } | 1662 } |
| OLD | NEW |