| 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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 ] | 736 ] |
| 737 configs -= [ "//build/config/win:lean_and_mean" ] | 737 configs -= [ "//build/config/win:lean_and_mean" ] |
| 738 } | 738 } |
| 739 } | 739 } |
| 740 | 740 |
| 741 static_library("fxedit") { | 741 static_library("fxedit") { |
| 742 sources = [ | 742 sources = [ |
| 743 "fpdfsdk/fxedit/fxet_ap.cpp", | 743 "fpdfsdk/fxedit/fxet_ap.cpp", |
| 744 "fpdfsdk/fxedit/fxet_edit.cpp", | 744 "fpdfsdk/fxedit/fxet_edit.cpp", |
| 745 "fpdfsdk/fxedit/fxet_list.cpp", | 745 "fpdfsdk/fxedit/fxet_list.cpp", |
| 746 "fpdfsdk/fxedit/fxet_module.cpp", | |
| 747 "fpdfsdk/fxedit/fxet_pageobjs.cpp", | |
| 748 "fpdfsdk/fxedit/include/fx_edit.h", | 746 "fpdfsdk/fxedit/include/fx_edit.h", |
| 749 "fpdfsdk/fxedit/include/fxet_edit.h", | 747 "fpdfsdk/fxedit/include/fxet_edit.h", |
| 750 "fpdfsdk/fxedit/include/fxet_list.h", | 748 "fpdfsdk/fxedit/include/fxet_list.h", |
| 751 ] | 749 ] |
| 752 configs += [ ":pdfium_core_config" ] | 750 configs += [ ":pdfium_core_config" ] |
| 753 } | 751 } |
| 754 | 752 |
| 755 static_library("pdfwindow") { | 753 static_library("pdfwindow") { |
| 756 sources = [ | 754 sources = [ |
| 757 "fpdfsdk/pdfwindow/PWL_Button.cpp", | 755 "fpdfsdk/pdfwindow/PWL_Button.cpp", |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1581 } | 1579 } |
| 1582 | 1580 |
| 1583 if (pdf_is_standalone) { | 1581 if (pdf_is_standalone) { |
| 1584 source_set("samples") { | 1582 source_set("samples") { |
| 1585 testonly = true | 1583 testonly = true |
| 1586 deps = [ | 1584 deps = [ |
| 1587 "//samples", | 1585 "//samples", |
| 1588 ] | 1586 ] |
| 1589 } | 1587 } |
| 1590 } | 1588 } |
| OLD | NEW |