diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-07-24 09:42:55 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-24 13:59:00 +0000 |
commit | 6b0158fdc229e7fc45fdb61c700b709bd82b2309 (patch) | |
tree | acb36f7f20b7a1280613deae74bcedcd500f3547 /BUILD.gn | |
parent | c08dc39850188d96ad81f5800c7a51d2663eeb44 (diff) | |
download | pdfium-6b0158fdc229e7fc45fdb61c700b709bd82b2309.tar.xz |
Remove fxedit place classes in pdfwindow/
This CL removes the fpdfsdk/fxedit folder and moves the code to
fpdfsdk/pdfwindow which is the primary consumer. The classes were
renamed from CFX_* to CPWL_*.
Change-Id: I6c6178adccf978193bbb9685204657ebd3f438bb
Reviewed-on: https://pdfium-review.googlesource.com/8552
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 18 |
1 files changed, 4 insertions, 14 deletions
@@ -187,7 +187,6 @@ static_library("pdfium") { ":fpdftext", ":fxcodec", ":fxcrt", - ":fxedit", ":fxge", ":javascript", ":pdfwindow", @@ -1077,19 +1076,6 @@ static_library("fxge") { } } -static_library("fxedit") { - sources = [ - "fpdfsdk/fxedit/fxet_edit.cpp", - "fpdfsdk/fxedit/fxet_edit.h", - "fpdfsdk/fxedit/fxet_list.cpp", - "fpdfsdk/fxedit/fxet_list.h", - ] - configs += [ ":pdfium_core_config" ] - deps = [ - ":fxcrt", - ] -} - static_library("pdfwindow") { sources = [ "fpdfsdk/pdfwindow/cpwl_appstream.cpp", @@ -1104,12 +1090,16 @@ static_library("pdfwindow") { "fpdfsdk/pdfwindow/cpwl_edit.h", "fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp", "fpdfsdk/pdfwindow/cpwl_edit_ctrl.h", + "fpdfsdk/pdfwindow/cpwl_edit_impl.cpp", + "fpdfsdk/pdfwindow/cpwl_edit_impl.h", "fpdfsdk/pdfwindow/cpwl_font_map.cpp", "fpdfsdk/pdfwindow/cpwl_font_map.h", "fpdfsdk/pdfwindow/cpwl_icon.cpp", "fpdfsdk/pdfwindow/cpwl_icon.h", "fpdfsdk/pdfwindow/cpwl_list_box.cpp", "fpdfsdk/pdfwindow/cpwl_list_box.h", + "fpdfsdk/pdfwindow/cpwl_list_impl.cpp", + "fpdfsdk/pdfwindow/cpwl_list_impl.h", "fpdfsdk/pdfwindow/cpwl_scroll_bar.cpp", "fpdfsdk/pdfwindow/cpwl_scroll_bar.h", "fpdfsdk/pdfwindow/cpwl_special_button.cpp", |