| 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 deps = [ | 769 deps = [ |
| 770 ":xfa", | 770 ":xfa", |
| 771 ] | 771 ] |
| 772 configs -= [ "//build/config/compiler:chromium_code" ] | 772 configs -= [ "//build/config/compiler:chromium_code" ] |
| 773 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 773 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 774 } | 774 } |
| 775 | 775 |
| 776 static_library("xfa") { | 776 static_library("xfa") { |
| 777 sources = [ | 777 sources = [ |
| 778 "xfa/include/foxitxfa.h", | 778 "xfa/include/foxitxfa.h", |
| 779 "xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h", | |
| 780 "xfa/include/fwl/adapter/fwl_adaptercursormgr.h", | |
| 781 "xfa/include/fwl/adapter/fwl_adaptermonitormgr.h", | |
| 782 "xfa/include/fwl/adapter/fwl_adapternative.h", | 779 "xfa/include/fwl/adapter/fwl_adapternative.h", |
| 783 "xfa/include/fwl/adapter/fwl_adapterthreadmgr.h", | 780 "xfa/include/fwl/adapter/fwl_adapterthreadmgr.h", |
| 784 "xfa/include/fwl/adapter/fwl_adaptertimermgr.h", | 781 "xfa/include/fwl/adapter/fwl_adaptertimermgr.h", |
| 785 "xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h", | 782 "xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h", |
| 786 "xfa/include/fwl/adapter/fwl_sdadapterimp.h", | 783 "xfa/include/fwl/adapter/fwl_sdadapterimp.h", |
| 787 "xfa/include/fwl/basewidget/fwl_barcode.h", | 784 "xfa/include/fwl/basewidget/fwl_barcode.h", |
| 788 "xfa/include/fwl/basewidget/fwl_caret.h", | 785 "xfa/include/fwl/basewidget/fwl_caret.h", |
| 789 "xfa/include/fwl/basewidget/fwl_checkbox.h", | 786 "xfa/include/fwl/basewidget/fwl_checkbox.h", |
| 790 "xfa/include/fwl/basewidget/fwl_combobox.h", | 787 "xfa/include/fwl/basewidget/fwl_combobox.h", |
| 791 "xfa/include/fwl/basewidget/fwl_datetimepicker.h", | 788 "xfa/include/fwl/basewidget/fwl_datetimepicker.h", |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1519 "//v8:v8_libplatform", | 1516 "//v8:v8_libplatform", |
| 1520 ] | 1517 ] |
| 1521 include_dirs += [ | 1518 include_dirs += [ |
| 1522 "//v8", | 1519 "//v8", |
| 1523 "//v8/include", | 1520 "//v8/include", |
| 1524 ] | 1521 ] |
| 1525 configs += [ "//v8:external_startup_data" ] | 1522 configs += [ "//v8:external_startup_data" ] |
| 1526 } | 1523 } |
| 1527 configs += [ ":pdfium_config" ] | 1524 configs += [ ":pdfium_config" ] |
| 1528 } | 1525 } |
| OLD | NEW |