| 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 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 "//build/config/compiler:no_chromium_code", | 1571 "//build/config/compiler:no_chromium_code", |
| 1572 ] | 1572 ] |
| 1573 } | 1573 } |
| 1574 } | 1574 } |
| 1575 | 1575 |
| 1576 test("pdfium_unittests") { | 1576 test("pdfium_unittests") { |
| 1577 sources = [ | 1577 sources = [ |
| 1578 "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", | 1578 "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", |
| 1579 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 1579 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", |
| 1580 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 1580 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", |
| 1581 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", |
| 1581 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", | 1582 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", |
| 1582 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", | 1583 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", |
| 1583 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", | 1584 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", |
| 1584 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", | 1585 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", |
| 1585 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 1586 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 1586 "core/fpdfdoc/doc_basic_unittest.cpp", | 1587 "core/fpdfdoc/doc_basic_unittest.cpp", |
| 1587 "core/fpdftext/fpdf_text_int_unittest.cpp", | 1588 "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1588 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1589 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1589 "core/fxcrt/cfx_retain_ptr_unittest.cpp", | 1590 "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
| 1590 "core/fxcrt/fx_basic_bstring_unittest.cpp", | 1591 "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 "//v8:v8_libplatform", | 1664 "//v8:v8_libplatform", |
| 1664 ] | 1665 ] |
| 1665 include_dirs += [ | 1666 include_dirs += [ |
| 1666 "//v8", | 1667 "//v8", |
| 1667 "//v8/include", | 1668 "//v8/include", |
| 1668 ] | 1669 ] |
| 1669 configs += [ "//v8:external_startup_data" ] | 1670 configs += [ "//v8:external_startup_data" ] |
| 1670 } | 1671 } |
| 1671 configs += [ ":pdfium_config" ] | 1672 configs += [ ":pdfium_config" ] |
| 1672 } | 1673 } |
| OLD | NEW |