| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "fpdfsdk/cpdfsdk_annothandlermgr.cpp", | 71 "fpdfsdk/cpdfsdk_annothandlermgr.cpp", |
| 72 "fpdfsdk/cpdfsdk_annothandlermgr.h", | 72 "fpdfsdk/cpdfsdk_annothandlermgr.h", |
| 73 "fpdfsdk/cpdfsdk_annotiterator.cpp", | 73 "fpdfsdk/cpdfsdk_annotiterator.cpp", |
| 74 "fpdfsdk/cpdfsdk_annotiterator.h", | 74 "fpdfsdk/cpdfsdk_annotiterator.h", |
| 75 "fpdfsdk/cpdfsdk_baannot.cpp", | 75 "fpdfsdk/cpdfsdk_baannot.cpp", |
| 76 "fpdfsdk/cpdfsdk_baannot.h", | 76 "fpdfsdk/cpdfsdk_baannot.h", |
| 77 "fpdfsdk/cpdfsdk_baannothandler.cpp", | 77 "fpdfsdk/cpdfsdk_baannothandler.cpp", |
| 78 "fpdfsdk/cpdfsdk_baannothandler.h", | 78 "fpdfsdk/cpdfsdk_baannothandler.h", |
| 79 "fpdfsdk/cpdfsdk_datetime.cpp", | 79 "fpdfsdk/cpdfsdk_datetime.cpp", |
| 80 "fpdfsdk/cpdfsdk_datetime.h", | 80 "fpdfsdk/cpdfsdk_datetime.h", |
| 81 "fpdfsdk/cpdfsdk_document.cpp", | |
| 82 "fpdfsdk/cpdfsdk_document.h", | |
| 83 "fpdfsdk/cpdfsdk_formfillenvironment.cpp", | 81 "fpdfsdk/cpdfsdk_formfillenvironment.cpp", |
| 84 "fpdfsdk/cpdfsdk_formfillenvironment.h", | 82 "fpdfsdk/cpdfsdk_formfillenvironment.h", |
| 85 "fpdfsdk/cpdfsdk_interform.cpp", | 83 "fpdfsdk/cpdfsdk_interform.cpp", |
| 86 "fpdfsdk/cpdfsdk_interform.h", | 84 "fpdfsdk/cpdfsdk_interform.h", |
| 87 "fpdfsdk/cpdfsdk_pageview.cpp", | 85 "fpdfsdk/cpdfsdk_pageview.cpp", |
| 88 "fpdfsdk/cpdfsdk_pageview.h", | 86 "fpdfsdk/cpdfsdk_pageview.h", |
| 89 "fpdfsdk/cpdfsdk_widget.cpp", | 87 "fpdfsdk/cpdfsdk_widget.cpp", |
| 90 "fpdfsdk/cpdfsdk_widget.h", | 88 "fpdfsdk/cpdfsdk_widget.h", |
| 91 "fpdfsdk/cpdfsdk_widgethandler.cpp", | 89 "fpdfsdk/cpdfsdk_widgethandler.cpp", |
| 92 "fpdfsdk/cpdfsdk_widgethandler.h", | 90 "fpdfsdk/cpdfsdk_widgethandler.h", |
| (...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1757 } | 1755 } |
| 1758 | 1756 |
| 1759 if (pdf_is_standalone) { | 1757 if (pdf_is_standalone) { |
| 1760 source_set("samples") { | 1758 source_set("samples") { |
| 1761 testonly = true | 1759 testonly = true |
| 1762 deps = [ | 1760 deps = [ |
| 1763 "//samples", | 1761 "//samples", |
| 1764 ] | 1762 ] |
| 1765 } | 1763 } |
| 1766 } | 1764 } |
| OLD | NEW |