| 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 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1543 "core/fxcrt/cfx_retain_ptr_unittest.cpp", | 1543 "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
| 1544 "core/fxcrt/fx_basic_bstring_unittest.cpp", | 1544 "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1545 "core/fxcrt/fx_basic_gcc_unittest.cpp", | 1545 "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1546 "core/fxcrt/fx_basic_memmgr_unittest.cpp", | 1546 "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1547 "core/fxcrt/fx_basic_util_unittest.cpp", | 1547 "core/fxcrt/fx_basic_util_unittest.cpp", |
| 1548 "core/fxcrt/fx_basic_wstring_unittest.cpp", | 1548 "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1549 "core/fxcrt/fx_bidi_unittest.cpp", | 1549 "core/fxcrt/fx_bidi_unittest.cpp", |
| 1550 "core/fxcrt/fx_extension_unittest.cpp", | 1550 "core/fxcrt/fx_extension_unittest.cpp", |
| 1551 "core/fxcrt/fx_system_unittest.cpp", | 1551 "core/fxcrt/fx_system_unittest.cpp", |
| 1552 "fpdfsdk/fpdfdoc_unittest.cpp", | 1552 "fpdfsdk/fpdfdoc_unittest.cpp", |
| 1553 "fpdfsdk/fpdfeditimg_unittest.cpp", |
| 1553 ] | 1554 ] |
| 1554 deps = [ | 1555 deps = [ |
| 1555 ":pdfium", | 1556 ":pdfium", |
| 1556 ":test_support", | 1557 ":test_support", |
| 1557 "//testing/gtest", | 1558 "//testing/gtest", |
| 1558 "//testing/gtest:gtest_main", | 1559 "//testing/gtest:gtest_main", |
| 1559 ] | 1560 ] |
| 1560 include_dirs = [] | 1561 include_dirs = [] |
| 1561 if (pdf_enable_xfa) { | 1562 if (pdf_enable_xfa) { |
| 1562 sources += [ | 1563 sources += [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 } | 1637 } |
| 1637 | 1638 |
| 1638 if (pdf_is_standalone) { | 1639 if (pdf_is_standalone) { |
| 1639 source_set("samples") { | 1640 source_set("samples") { |
| 1640 testonly = true | 1641 testonly = true |
| 1641 deps = [ | 1642 deps = [ |
| 1642 "//samples", | 1643 "//samples", |
| 1643 ] | 1644 ] |
| 1644 } | 1645 } |
| 1645 } | 1646 } |
| OLD | NEW |