| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 ] | 890 ] |
| 891 configs += [ ":pdfium_core_config" ] | 891 configs += [ ":pdfium_core_config" ] |
| 892 } | 892 } |
| 893 | 893 |
| 894 static_library("xfa") { | 894 static_library("xfa") { |
| 895 sources = [ | 895 sources = [ |
| 896 "fxjse/class.cpp", | 896 "fxjse/class.cpp", |
| 897 "fxjse/context.cpp", | 897 "fxjse/context.cpp", |
| 898 "fxjse/context.h", | 898 "fxjse/context.h", |
| 899 "fxjse/dynprop.cpp", | 899 "fxjse/dynprop.cpp", |
| 900 "fxjse/fxjs_perisolatedata.cpp", |
| 900 "fxjse/include/cfxjse_arguments.h", | 901 "fxjse/include/cfxjse_arguments.h", |
| 901 "fxjse/include/cfxjse_class.h", | 902 "fxjse/include/cfxjse_class.h", |
| 902 "fxjse/include/cfxjse_value.h", | 903 "fxjse/include/cfxjse_value.h", |
| 904 "fxjse/include/fxjs_perisolatedata.h", |
| 903 "fxjse/include/fxjse.h", | 905 "fxjse/include/fxjse.h", |
| 904 "fxjse/runtime.cpp", | 906 "fxjse/runtime.cpp", |
| 905 "fxjse/runtime.h", | 907 "fxjse/runtime.h", |
| 906 "fxjse/scope_inline.h", | 908 "fxjse/scope_inline.h", |
| 907 "fxjse/value.cpp", | 909 "fxjse/value.cpp", |
| 908 "xfa/fde/cfde_path.cpp", | 910 "xfa/fde/cfde_path.cpp", |
| 909 "xfa/fde/cfde_path.h", | 911 "xfa/fde/cfde_path.h", |
| 910 "xfa/fde/cfde_txtedtbuf.cpp", | 912 "xfa/fde/cfde_txtedtbuf.cpp", |
| 911 "xfa/fde/cfde_txtedtbuf.h", | 913 "xfa/fde/cfde_txtedtbuf.h", |
| 912 "xfa/fde/cfde_txtedtbufiter.cpp", | 914 "xfa/fde/cfde_txtedtbufiter.cpp", |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1697 } | 1699 } |
| 1698 | 1700 |
| 1699 if (pdf_is_standalone) { | 1701 if (pdf_is_standalone) { |
| 1700 source_set("samples") { | 1702 source_set("samples") { |
| 1701 testonly = true | 1703 testonly = true |
| 1702 deps = [ | 1704 deps = [ |
| 1703 "//samples", | 1705 "//samples", |
| 1704 ] | 1706 ] |
| 1705 } | 1707 } |
| 1706 } | 1708 } |
| OLD | NEW |