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 | 6 |
7 pdf_use_skia = false | 7 pdf_use_skia = false |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 # On Android there's no system FreeType. On Windows and Mac, only a few | 10 # On Android there's no system FreeType. On Windows and Mac, only a few |
(...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", | 775 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", |
776 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", | 776 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", |
777 "fpdfsdk/src/fpdftext_embeddertest.cpp", | 777 "fpdfsdk/src/fpdftext_embeddertest.cpp", |
778 "fpdfsdk/src/fpdfview_c_api_test.c", | 778 "fpdfsdk/src/fpdfview_c_api_test.c", |
779 "fpdfsdk/src/fpdfview_c_api_test.h", | 779 "fpdfsdk/src/fpdfview_c_api_test.h", |
780 "fpdfsdk/src/fpdfview_embeddertest.cpp", | 780 "fpdfsdk/src/fpdfview_embeddertest.cpp", |
781 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp", | 781 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp", |
782 "testing/embedder_test.cpp", | 782 "testing/embedder_test.cpp", |
783 "testing/embedder_test.h", | 783 "testing/embedder_test.h", |
784 "testing/embedder_test_mock_delegate.h", | 784 "testing/embedder_test_mock_delegate.h", |
| 785 "testing/embedder_test_shared_isolate_delegate.h", |
785 "testing/embedder_test_timer_handling_delegate.h", | 786 "testing/embedder_test_timer_handling_delegate.h", |
786 "testing/fx_string_testhelpers.cpp", | 787 "testing/fx_string_testhelpers.cpp", |
787 "testing/fx_string_testhelpers.h", | 788 "testing/fx_string_testhelpers.h", |
788 ] | 789 ] |
789 deps = [ | 790 deps = [ |
790 "//testing/gmock", | 791 "//testing/gmock", |
791 "//testing/gtest", | 792 "//testing/gtest", |
792 "//v8", | 793 "//v8", |
793 "//v8:v8_libplatform", | 794 "//v8:v8_libplatform", |
794 ":pdfium", | 795 ":pdfium", |
795 ] | 796 ] |
796 include_dirs = [ | 797 include_dirs = [ |
797 "//v8", | 798 "//v8", |
798 "//v8/include", | 799 "//v8/include", |
799 "." | 800 "." |
800 ] | 801 ] |
801 configs -= [ "//build/config/compiler:chromium_code" ] | 802 configs -= [ "//build/config/compiler:chromium_code" ] |
802 configs += [ | 803 configs += [ |
803 ":pdfium_config", | 804 ":pdfium_config", |
804 "//build/config/compiler:no_chromium_code", | 805 "//build/config/compiler:no_chromium_code", |
805 ] | 806 ] |
806 } | 807 } |
OLD | NEW |