| 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 1620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1631 ] | 1631 ] |
| 1632 } | 1632 } |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 test("pdfium_unittests") { | 1635 test("pdfium_unittests") { |
| 1636 sources = [ | 1636 sources = [ |
| 1637 "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", | 1637 "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", |
| 1638 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 1638 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", |
| 1639 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 1639 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", |
| 1640 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", | 1640 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", |
| 1641 "core/fpdfapi/fpdf_parser/cpdf_array_unittest.cpp", |
| 1641 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", | 1642 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", |
| 1642 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", | 1643 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", |
| 1643 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", | 1644 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", |
| 1644 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", | 1645 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", |
| 1645 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 1646 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 1646 "core/fpdfdoc/doc_basic_unittest.cpp", | 1647 "core/fpdfdoc/doc_basic_unittest.cpp", |
| 1647 "core/fpdftext/fpdf_text_int_unittest.cpp", | 1648 "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1648 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1649 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1649 "core/fxcrt/cfx_retain_ptr_unittest.cpp", | 1650 "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
| 1650 "core/fxcrt/fx_basic_bstring_unittest.cpp", | 1651 "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1723 "//v8:v8_libplatform", | 1724 "//v8:v8_libplatform", |
| 1724 ] | 1725 ] |
| 1725 include_dirs += [ | 1726 include_dirs += [ |
| 1726 "//v8", | 1727 "//v8", |
| 1727 "//v8/include", | 1728 "//v8/include", |
| 1728 ] | 1729 ] |
| 1729 configs += [ "//v8:external_startup_data" ] | 1730 configs += [ "//v8:external_startup_data" ] |
| 1730 } | 1731 } |
| 1731 configs += [ ":pdfium_config" ] | 1732 configs += [ ":pdfium_config" ] |
| 1732 } | 1733 } |
| OLD | NEW |