| 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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 "testing/embedder_test_timer_handling_delegate.h", | 768 "testing/embedder_test_timer_handling_delegate.h", |
| 769 ] | 769 ] |
| 770 deps = [ | 770 deps = [ |
| 771 "//testing/gmock", | 771 "//testing/gmock", |
| 772 "//testing/gtest", | 772 "//testing/gtest", |
| 773 ":pdfium", | 773 ":pdfium", |
| 774 ":test_support", | 774 ":test_support", |
| 775 ] | 775 ] |
| 776 include_dirs = [] | 776 include_dirs = [] |
| 777 if (pdf_enable_v8) { | 777 if (pdf_enable_v8) { |
| 778 sources += [ "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp" ] | 778 sources += [ |
| 779 "fpdfsdk/src/javascript/public_methods_embeddertest.cpp", |
| 780 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp", |
| 781 "testing/js_embedder_test.cpp", |
| 782 "testing/js_embedder_test.h", |
| 783 ] |
| 779 deps += [ | 784 deps += [ |
| 780 "//v8", | 785 "//v8", |
| 781 "//v8:v8_libplatform", | 786 "//v8:v8_libplatform", |
| 782 ] | 787 ] |
| 783 include_dirs += [ | 788 include_dirs += [ |
| 784 "//v8", | 789 "//v8", |
| 785 "//v8/include", | 790 "//v8/include", |
| 786 ] | 791 ] |
| 787 configs += [ "//v8:external_startup_data" ] | 792 configs += [ "//v8:external_startup_data" ] |
| 788 } | 793 } |
| 789 configs += [ ":pdfium_config" ] | 794 configs += [ ":pdfium_config" ] |
| 790 } | 795 } |
| OLD | NEW |