Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: BUILD.gn

Issue 2507713003: Split the common event classes out to files. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | xfa/fwl/core/cfwl_event.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 "xfa/fwl/core/cfwl_barcode.cpp", 1171 "xfa/fwl/core/cfwl_barcode.cpp",
1172 "xfa/fwl/core/cfwl_barcode.h", 1172 "xfa/fwl/core/cfwl_barcode.h",
1173 "xfa/fwl/core/cfwl_checkbox.cpp", 1173 "xfa/fwl/core/cfwl_checkbox.cpp",
1174 "xfa/fwl/core/cfwl_checkbox.h", 1174 "xfa/fwl/core/cfwl_checkbox.h",
1175 "xfa/fwl/core/cfwl_combobox.cpp", 1175 "xfa/fwl/core/cfwl_combobox.cpp",
1176 "xfa/fwl/core/cfwl_combobox.h", 1176 "xfa/fwl/core/cfwl_combobox.h",
1177 "xfa/fwl/core/cfwl_datetimepicker.cpp", 1177 "xfa/fwl/core/cfwl_datetimepicker.cpp",
1178 "xfa/fwl/core/cfwl_datetimepicker.h", 1178 "xfa/fwl/core/cfwl_datetimepicker.h",
1179 "xfa/fwl/core/cfwl_edit.cpp", 1179 "xfa/fwl/core/cfwl_edit.cpp",
1180 "xfa/fwl/core/cfwl_edit.h", 1180 "xfa/fwl/core/cfwl_edit.h",
1181 "xfa/fwl/core/cfwl_event.cpp",
1181 "xfa/fwl/core/cfwl_event.h", 1182 "xfa/fwl/core/cfwl_event.h",
1183 "xfa/fwl/core/cfwl_evtclick.cpp",
1184 "xfa/fwl/core/cfwl_evtclick.h",
1185 "xfa/fwl/core/cfwl_evtclose.cpp",
1186 "xfa/fwl/core/cfwl_evtclose.h",
1187 "xfa/fwl/core/cfwl_evtkey.cpp",
1188 "xfa/fwl/core/cfwl_evtkey.h",
1189 "xfa/fwl/core/cfwl_evtkillfocus.cpp",
1190 "xfa/fwl/core/cfwl_evtkillfocus.h",
1191 "xfa/fwl/core/cfwl_evtmouse.cpp",
1192 "xfa/fwl/core/cfwl_evtmouse.h",
1193 "xfa/fwl/core/cfwl_evtmousewheel.cpp",
1194 "xfa/fwl/core/cfwl_evtmousewheel.h",
1195 "xfa/fwl/core/cfwl_evtscroll.cpp",
1196 "xfa/fwl/core/cfwl_evtscroll.h",
1197 "xfa/fwl/core/cfwl_evtsetfocus.cpp",
1198 "xfa/fwl/core/cfwl_evtsetfocus.h",
1199 "xfa/fwl/core/cfwl_evtsizechanged.cpp",
1200 "xfa/fwl/core/cfwl_evtsizechanged.h",
1182 "xfa/fwl/core/cfwl_listbox.cpp", 1201 "xfa/fwl/core/cfwl_listbox.cpp",
1183 "xfa/fwl/core/cfwl_listbox.h", 1202 "xfa/fwl/core/cfwl_listbox.h",
1184 "xfa/fwl/core/cfwl_listitem.cpp", 1203 "xfa/fwl/core/cfwl_listitem.cpp",
1185 "xfa/fwl/core/cfwl_listitem.h", 1204 "xfa/fwl/core/cfwl_listitem.h",
1186 "xfa/fwl/core/cfwl_message.cpp", 1205 "xfa/fwl/core/cfwl_message.cpp",
1187 "xfa/fwl/core/cfwl_message.h", 1206 "xfa/fwl/core/cfwl_message.h",
1188 "xfa/fwl/core/cfwl_msgkey.cpp", 1207 "xfa/fwl/core/cfwl_msgkey.cpp",
1189 "xfa/fwl/core/cfwl_msgkey.h", 1208 "xfa/fwl/core/cfwl_msgkey.h",
1190 "xfa/fwl/core/cfwl_msgkillfocus.cpp", 1209 "xfa/fwl/core/cfwl_msgkillfocus.cpp",
1191 "xfa/fwl/core/cfwl_msgkillfocus.h", 1210 "xfa/fwl/core/cfwl_msgkillfocus.h",
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 "//samples", 1804 "//samples",
1786 ] 1805 ]
1787 } 1806 }
1788 group("fuzzers") { 1807 group("fuzzers") {
1789 testonly = true 1808 testonly = true
1790 deps = [ 1809 deps = [
1791 "//testing/libfuzzer", 1810 "//testing/libfuzzer",
1792 ] 1811 ]
1793 } 1812 }
1794 } 1813 }
OLDNEW
« no previous file with comments | « no previous file | xfa/fwl/core/cfwl_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698