| 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 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 static_library("formfiller") { | 983 static_library("formfiller") { |
| 984 sources = [ | 984 sources = [ |
| 985 "fpdfsdk/formfiller/cba_fontmap.cpp", | 985 "fpdfsdk/formfiller/cba_fontmap.cpp", |
| 986 "fpdfsdk/formfiller/cba_fontmap.h", | 986 "fpdfsdk/formfiller/cba_fontmap.h", |
| 987 "fpdfsdk/formfiller/cffl_checkbox.cpp", | 987 "fpdfsdk/formfiller/cffl_checkbox.cpp", |
| 988 "fpdfsdk/formfiller/cffl_checkbox.h", | 988 "fpdfsdk/formfiller/cffl_checkbox.h", |
| 989 "fpdfsdk/formfiller/cffl_combobox.cpp", | 989 "fpdfsdk/formfiller/cffl_combobox.cpp", |
| 990 "fpdfsdk/formfiller/cffl_combobox.h", | 990 "fpdfsdk/formfiller/cffl_combobox.h", |
| 991 "fpdfsdk/formfiller/cffl_formfiller.cpp", | 991 "fpdfsdk/formfiller/cffl_formfiller.cpp", |
| 992 "fpdfsdk/formfiller/cffl_formfiller.h", | 992 "fpdfsdk/formfiller/cffl_formfiller.h", |
| 993 "fpdfsdk/formfiller/cffl_iformfiller.cpp", | 993 "fpdfsdk/formfiller/cffl_interactiveformfiller.cpp", |
| 994 "fpdfsdk/formfiller/cffl_iformfiller.h", | 994 "fpdfsdk/formfiller/cffl_interactiveformfiller.h", |
| 995 "fpdfsdk/formfiller/cffl_listbox.cpp", | 995 "fpdfsdk/formfiller/cffl_listbox.cpp", |
| 996 "fpdfsdk/formfiller/cffl_listbox.h", | 996 "fpdfsdk/formfiller/cffl_listbox.h", |
| 997 "fpdfsdk/formfiller/cffl_pushbutton.cpp", | 997 "fpdfsdk/formfiller/cffl_pushbutton.cpp", |
| 998 "fpdfsdk/formfiller/cffl_pushbutton.h", | 998 "fpdfsdk/formfiller/cffl_pushbutton.h", |
| 999 "fpdfsdk/formfiller/cffl_radiobutton.cpp", | 999 "fpdfsdk/formfiller/cffl_radiobutton.cpp", |
| 1000 "fpdfsdk/formfiller/cffl_radiobutton.h", | 1000 "fpdfsdk/formfiller/cffl_radiobutton.h", |
| 1001 "fpdfsdk/formfiller/cffl_textfield.cpp", | 1001 "fpdfsdk/formfiller/cffl_textfield.cpp", |
| 1002 "fpdfsdk/formfiller/cffl_textfield.h", | 1002 "fpdfsdk/formfiller/cffl_textfield.h", |
| 1003 ] | 1003 ] |
| 1004 configs += [ ":pdfium_core_config" ] | 1004 configs += [ ":pdfium_core_config" ] |
| (...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1756 } | 1756 } |
| 1757 | 1757 |
| 1758 if (pdf_is_standalone) { | 1758 if (pdf_is_standalone) { |
| 1759 source_set("samples") { | 1759 source_set("samples") { |
| 1760 testonly = true | 1760 testonly = true |
| 1761 deps = [ | 1761 deps = [ |
| 1762 "//samples", | 1762 "//samples", |
| 1763 ] | 1763 ] |
| 1764 } | 1764 } |
| 1765 } | 1765 } |
| OLD | NEW |