| 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 ] | 750 ] |
| 751 } | 751 } |
| 752 | 752 |
| 753 test("pdfium_unittests") { | 753 test("pdfium_unittests") { |
| 754 sources = [ | 754 sources = [ |
| 755 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 755 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 756 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 756 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 757 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 757 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 758 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 758 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", |
| 759 "core/src/fxcrt/fx_bidi_unittest.cpp", | 759 "core/src/fxcrt/fx_bidi_unittest.cpp", |
| 760 "core/src/fxcrt/fx_extension_unittest.cpp", |
| 760 "core/src/fxcrt/fx_system_unittest.cpp", | 761 "core/src/fxcrt/fx_system_unittest.cpp", |
| 761 "third_party/base/nonstd_unique_ptr_unittest.cpp", | 762 "third_party/base/nonstd_unique_ptr_unittest.cpp", |
| 762 ] | 763 ] |
| 763 deps = [ | 764 deps = [ |
| 764 "//testing/gtest", | 765 "//testing/gtest", |
| 765 "//testing/gtest:gtest_main", | 766 "//testing/gtest:gtest_main", |
| 766 ":pdfium", | 767 ":pdfium", |
| 767 ":test_support", | 768 ":test_support", |
| 768 ] | 769 ] |
| 769 include_dirs = [ "." ] | 770 include_dirs = [ "." ] |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 "//v8", | 813 "//v8", |
| 813 "//v8/include", | 814 "//v8/include", |
| 814 ] | 815 ] |
| 815 } | 816 } |
| 816 configs -= [ "//build/config/compiler:chromium_code" ] | 817 configs -= [ "//build/config/compiler:chromium_code" ] |
| 817 configs += [ | 818 configs += [ |
| 818 ":pdfium_config", | 819 ":pdfium_config", |
| 819 "//build/config/compiler:no_chromium_code", | 820 "//build/config/compiler:no_chromium_code", |
| 820 ] | 821 ] |
| 821 } | 822 } |
| OLD | NEW |