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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 730 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
731 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", | 731 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", |
732 "core/src/fpdftext/fpdf_text_int_unittest.cpp", | 732 "core/src/fpdftext/fpdf_text_int_unittest.cpp", |
733 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 733 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
734 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 734 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
735 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 735 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", |
736 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 736 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", |
737 "core/src/fxcrt/fx_bidi_unittest.cpp", | 737 "core/src/fxcrt/fx_bidi_unittest.cpp", |
738 "core/src/fxcrt/fx_extension_unittest.cpp", | 738 "core/src/fxcrt/fx_extension_unittest.cpp", |
739 "core/src/fxcrt/fx_system_unittest.cpp", | 739 "core/src/fxcrt/fx_system_unittest.cpp", |
740 "third_party/base/nonstd_unique_ptr_unittest.cpp", | |
741 ] | 740 ] |
742 deps = [ | 741 deps = [ |
743 "//testing/gtest", | 742 "//testing/gtest", |
744 "//testing/gtest:gtest_main", | 743 "//testing/gtest:gtest_main", |
745 ":pdfium", | 744 ":pdfium", |
746 ":test_support", | 745 ":test_support", |
747 ] | 746 ] |
748 configs += [ ":pdfium_config" ] | 747 configs += [ ":pdfium_config" ] |
749 } | 748 } |
750 | 749 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 "//v8:v8_libplatform", | 785 "//v8:v8_libplatform", |
787 ] | 786 ] |
788 include_dirs += [ | 787 include_dirs += [ |
789 "//v8", | 788 "//v8", |
790 "//v8/include", | 789 "//v8/include", |
791 ] | 790 ] |
792 configs += [ "//v8:external_startup_data" ] | 791 configs += [ "//v8:external_startup_data" ] |
793 } | 792 } |
794 configs += [ ":pdfium_config" ] | 793 configs += [ ":pdfium_config" ] |
795 } | 794 } |
OLD | NEW |