| 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("//testing/test.gni") | 5 import("//testing/test.gni") | 
| 6 import("pdfium.gni") | 6 import("pdfium.gni") | 
| 7 | 7 | 
| 8 config("pdfium_config") { | 8 config("pdfium_config") { | 
| 9   cflags = [] | 9   cflags = [] | 
| 10   include_dirs = [ "third_party/freetype/include" ] | 10   include_dirs = [ "third_party/freetype/include" ] | 
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 717     "core/src/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", | 717     "core/src/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", | 
| 718     "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 718     "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 
| 719     "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 719     "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 
| 720     "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 720     "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 
| 721     "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", | 721     "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", | 
| 722     "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 722     "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 
| 723     "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 723     "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 
| 724     "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 724     "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 
| 725     "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 725     "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 
| 726     "core/src/fxcrt/fx_bidi_unittest.cpp", | 726     "core/src/fxcrt/fx_bidi_unittest.cpp", | 
|  | 727     "core/src/fxcrt/fx_extension_unittest.cpp", | 
| 727     "core/src/fxcrt/fx_system_unittest.cpp", | 728     "core/src/fxcrt/fx_system_unittest.cpp", | 
| 728     "third_party/base/nonstd_unique_ptr_unittest.cpp", | 729     "third_party/base/nonstd_unique_ptr_unittest.cpp", | 
| 729   ] | 730   ] | 
| 730   deps = [ | 731   deps = [ | 
| 731     "//testing/gtest", | 732     "//testing/gtest", | 
| 732     "//testing/gtest:gtest_main", | 733     "//testing/gtest:gtest_main", | 
| 733     ":pdfium", | 734     ":pdfium", | 
| 734     ":test_support", | 735     ":test_support", | 
| 735   ] | 736   ] | 
| 736   include_dirs = [ "." ] | 737   include_dirs = [ "." ] | 
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 771       "//v8", | 772       "//v8", | 
| 772       "//v8:v8_libplatform", | 773       "//v8:v8_libplatform", | 
| 773     ] | 774     ] | 
| 774     include_dirs += [ | 775     include_dirs += [ | 
| 775       "//v8", | 776       "//v8", | 
| 776       "//v8/include", | 777       "//v8/include", | 
| 777     ] | 778     ] | 
| 778   } | 779   } | 
| 779   configs += [ ":pdfium_config" ] | 780   configs += [ ":pdfium_config" ] | 
| 780 } | 781 } | 
| OLD | NEW | 
|---|