| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 ] | 715 ] |
| 716 configs += [ ":pdfium_config" ] | 716 configs += [ ":pdfium_config" ] |
| 717 } | 717 } |
| 718 | 718 |
| 719 test("pdfium_unittests") { | 719 test("pdfium_unittests") { |
| 720 sources = [ | 720 sources = [ |
| 721 "core/src/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", | 721 "core/src/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", |
| 722 "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 722 "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", |
| 723 "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 723 "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", |
| 724 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 724 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 725 "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects_unittest.cpp", |
| 725 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", | 726 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", |
| 726 "core/src/fpdftext/fpdf_text_int_unittest.cpp", | 727 "core/src/fpdftext/fpdf_text_int_unittest.cpp", |
| 727 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 728 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 728 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 729 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 729 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 730 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 730 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 731 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", |
| 731 "core/src/fxcrt/fx_bidi_unittest.cpp", | 732 "core/src/fxcrt/fx_bidi_unittest.cpp", |
| 732 "core/src/fxcrt/fx_extension_unittest.cpp", | 733 "core/src/fxcrt/fx_extension_unittest.cpp", |
| 733 "core/src/fxcrt/fx_system_unittest.cpp", | 734 "core/src/fxcrt/fx_system_unittest.cpp", |
| 734 ] | 735 ] |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 "//v8:v8_libplatform", | 783 "//v8:v8_libplatform", |
| 783 ] | 784 ] |
| 784 include_dirs += [ | 785 include_dirs += [ |
| 785 "//v8", | 786 "//v8", |
| 786 "//v8/include", | 787 "//v8/include", |
| 787 ] | 788 ] |
| 788 configs += [ "//v8:external_startup_data" ] | 789 configs += [ "//v8:external_startup_data" ] |
| 789 } | 790 } |
| 790 configs += [ ":pdfium_config" ] | 791 configs += [ ":pdfium_config" ] |
| 791 } | 792 } |
| OLD | NEW |