| 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 "core/fxcrt/fx_basic_utf.cpp", | 607 "core/fxcrt/fx_basic_utf.cpp", |
| 608 "core/fxcrt/fx_basic_util.cpp", | 608 "core/fxcrt/fx_basic_util.cpp", |
| 609 "core/fxcrt/fx_basic_wstring.cpp", | 609 "core/fxcrt/fx_basic_wstring.cpp", |
| 610 "core/fxcrt/fx_bidi.cpp", | 610 "core/fxcrt/fx_bidi.cpp", |
| 611 "core/fxcrt/fx_bidi.h", | 611 "core/fxcrt/fx_bidi.h", |
| 612 "core/fxcrt/fx_extension.cpp", | 612 "core/fxcrt/fx_extension.cpp", |
| 613 "core/fxcrt/fx_ucddata.cpp", | 613 "core/fxcrt/fx_ucddata.cpp", |
| 614 "core/fxcrt/fx_unicode.cpp", | 614 "core/fxcrt/fx_unicode.cpp", |
| 615 "core/fxcrt/fx_xml_composer.cpp", | 615 "core/fxcrt/fx_xml_composer.cpp", |
| 616 "core/fxcrt/fx_xml_parser.cpp", | 616 "core/fxcrt/fx_xml_parser.cpp", |
| 617 "core/fxcrt/fxcrt_platforms.cpp", | |
| 618 "core/fxcrt/fxcrt_platforms.h", | |
| 619 "core/fxcrt/fxcrt_posix.cpp", | 617 "core/fxcrt/fxcrt_posix.cpp", |
| 620 "core/fxcrt/fxcrt_posix.h", | 618 "core/fxcrt/fxcrt_posix.h", |
| 621 "core/fxcrt/fxcrt_stream.cpp", | 619 "core/fxcrt/fxcrt_stream.cpp", |
| 622 "core/fxcrt/fxcrt_windows.cpp", | 620 "core/fxcrt/fxcrt_windows.cpp", |
| 623 "core/fxcrt/fxcrt_windows.h", | 621 "core/fxcrt/fxcrt_windows.h", |
| 624 "core/fxcrt/include/cfx_retain_ptr.h", | 622 "core/fxcrt/include/cfx_retain_ptr.h", |
| 625 "core/fxcrt/include/fx_basic.h", | 623 "core/fxcrt/include/fx_basic.h", |
| 626 "core/fxcrt/include/fx_coordinates.h", | 624 "core/fxcrt/include/fx_coordinates.h", |
| 627 "core/fxcrt/include/fx_ext.h", | 625 "core/fxcrt/include/fx_ext.h", |
| 628 "core/fxcrt/include/fx_memory.h", | 626 "core/fxcrt/include/fx_memory.h", |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1710 } | 1708 } |
| 1711 | 1709 |
| 1712 if (pdf_is_standalone) { | 1710 if (pdf_is_standalone) { |
| 1713 source_set("samples") { | 1711 source_set("samples") { |
| 1714 testonly = true | 1712 testonly = true |
| 1715 deps = [ | 1713 deps = [ |
| 1716 "//samples", | 1714 "//samples", |
| 1717 ] | 1715 ] |
| 1718 } | 1716 } |
| 1719 } | 1717 } |
| OLD | NEW |