| 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 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1456 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", | 1456 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", |
| 1457 "core/fpdfapi/fpdf_parser/cpdf_array_unittest.cpp", | 1457 "core/fpdfapi/fpdf_parser/cpdf_array_unittest.cpp", |
| 1458 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", | 1458 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", |
| 1459 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", | 1459 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", |
| 1460 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", | 1460 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", |
| 1461 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", | 1461 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", |
| 1462 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 1462 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 1463 "core/fpdfdoc/doc_basic_unittest.cpp", | 1463 "core/fpdfdoc/doc_basic_unittest.cpp", |
| 1464 "core/fpdftext/fpdf_text_int_unittest.cpp", | 1464 "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1465 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1465 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1466 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", |
| 1466 "core/fxcrt/cfx_retain_ptr_unittest.cpp", | 1467 "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
| 1467 "core/fxcrt/fx_basic_bstring_unittest.cpp", | 1468 "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1468 "core/fxcrt/fx_basic_gcc_unittest.cpp", | 1469 "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1469 "core/fxcrt/fx_basic_memmgr_unittest.cpp", | 1470 "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1470 "core/fxcrt/fx_basic_util_unittest.cpp", | 1471 "core/fxcrt/fx_basic_util_unittest.cpp", |
| 1471 "core/fxcrt/fx_basic_wstring_unittest.cpp", | 1472 "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1472 "core/fxcrt/fx_bidi_unittest.cpp", | 1473 "core/fxcrt/fx_bidi_unittest.cpp", |
| 1473 "core/fxcrt/fx_extension_unittest.cpp", | 1474 "core/fxcrt/fx_extension_unittest.cpp", |
| 1474 "core/fxcrt/fx_system_unittest.cpp", | 1475 "core/fxcrt/fx_system_unittest.cpp", |
| 1475 "fpdfsdk/fpdfdoc_unittest.cpp", | 1476 "fpdfsdk/fpdfdoc_unittest.cpp", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1562 } | 1563 } |
| 1563 | 1564 |
| 1564 if (pdf_is_standalone) { | 1565 if (pdf_is_standalone) { |
| 1565 source_set("samples") { | 1566 source_set("samples") { |
| 1566 testonly = true | 1567 testonly = true |
| 1567 deps = [ | 1568 deps = [ |
| 1568 "//samples", | 1569 "//samples", |
| 1569 ] | 1570 ] |
| 1570 } | 1571 } |
| 1571 } | 1572 } |
| OLD | NEW |