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

Side by Side Diff: BUILD.gn

Issue 1860063002: Remove core/include/fpdfdoc/fpdf_vt.h (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months 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 | core/fpdfdoc/cpdf_variabletext.cpp » ('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_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "core/fdrm/crypto/fx_crypt.cpp", 185 "core/fdrm/crypto/fx_crypt.cpp",
186 "core/fdrm/crypto/fx_crypt_aes.cpp", 186 "core/fdrm/crypto/fx_crypt_aes.cpp",
187 "core/fdrm/crypto/fx_crypt_sha.cpp", 187 "core/fdrm/crypto/fx_crypt_sha.cpp",
188 "core/fdrm/crypto/include/fx_crypt.h", 188 "core/fdrm/crypto/include/fx_crypt.h",
189 ] 189 ]
190 configs += [ ":pdfium_config" ] 190 configs += [ ":pdfium_config" ]
191 } 191 }
192 192
193 static_library("fpdfdoc") { 193 static_library("fpdfdoc") {
194 sources = [ 194 sources = [
195 "core/fpdfdoc/cpdf_variabletext.cpp",
195 "core/fpdfdoc/cpvt_color.cpp", 196 "core/fpdfdoc/cpvt_color.cpp",
196 "core/fpdfdoc/cpvt_color.h", 197 "core/fpdfdoc/cpvt_color.h",
197 "core/fpdfdoc/cpvt_dash.h", 198 "core/fpdfdoc/cpvt_dash.h",
199 "core/fpdfdoc/cpvt_floatrect.h",
198 "core/fpdfdoc/cpvt_fontmap.cpp", 200 "core/fpdfdoc/cpvt_fontmap.cpp",
199 "core/fpdfdoc/cpvt_fontmap.h", 201 "core/fpdfdoc/cpvt_fontmap.h",
200 "core/fpdfdoc/cpvt_generateap.cpp", 202 "core/fpdfdoc/cpvt_generateap.cpp",
201 "core/fpdfdoc/cpvt_generateap.h", 203 "core/fpdfdoc/cpvt_generateap.h",
202 "core/fpdfdoc/cpvt_provider.h", 204 "core/fpdfdoc/cpvt_lineinfo.h",
205 "core/fpdfdoc/cpvt_sectioninfo.h",
206 "core/fpdfdoc/cpvt_wordinfo.h",
207 "core/fpdfdoc/csection.h",
208 "core/fpdfdoc/ctypeset.h",
203 "core/fpdfdoc/doc_action.cpp", 209 "core/fpdfdoc/doc_action.cpp",
204 "core/fpdfdoc/doc_annot.cpp", 210 "core/fpdfdoc/doc_annot.cpp",
205 "core/fpdfdoc/doc_ap.cpp",
206 "core/fpdfdoc/doc_basic.cpp", 211 "core/fpdfdoc/doc_basic.cpp",
207 "core/fpdfdoc/doc_bookmark.cpp", 212 "core/fpdfdoc/doc_bookmark.cpp",
208 "core/fpdfdoc/doc_form.cpp", 213 "core/fpdfdoc/doc_form.cpp",
209 "core/fpdfdoc/doc_formcontrol.cpp", 214 "core/fpdfdoc/doc_formcontrol.cpp",
210 "core/fpdfdoc/doc_formfield.cpp", 215 "core/fpdfdoc/doc_formfield.cpp",
211 "core/fpdfdoc/doc_link.cpp", 216 "core/fpdfdoc/doc_link.cpp",
212 "core/fpdfdoc/doc_metadata.cpp", 217 "core/fpdfdoc/doc_metadata.cpp",
213 "core/fpdfdoc/doc_ocg.cpp", 218 "core/fpdfdoc/doc_ocg.cpp",
214 "core/fpdfdoc/doc_tagged.cpp", 219 "core/fpdfdoc/doc_tagged.cpp",
215 "core/fpdfdoc/doc_utils.cpp", 220 "core/fpdfdoc/doc_utils.cpp",
216 "core/fpdfdoc/doc_utils.h", 221 "core/fpdfdoc/doc_utils.h",
217 "core/fpdfdoc/doc_viewerPreferences.cpp", 222 "core/fpdfdoc/doc_viewerPreferences.cpp",
218 "core/fpdfdoc/doc_vt.cpp", 223 "core/fpdfdoc/doc_vt.cpp",
219 "core/fpdfdoc/doc_vtmodule.cpp", 224 "core/fpdfdoc/include/cpdf_variabletext.h",
225 "core/fpdfdoc/include/cpvt_line.h",
226 "core/fpdfdoc/include/cpvt_secprops.h",
227 "core/fpdfdoc/include/cpvt_section.h",
228 "core/fpdfdoc/include/cpvt_word.h",
229 "core/fpdfdoc/include/cpvt_wordplace.h",
230 "core/fpdfdoc/include/cpvt_wordprops.h",
231 "core/fpdfdoc/include/cpvt_wordrange.h",
220 "core/fpdfdoc/ipvt_fontmap.h", 232 "core/fpdfdoc/ipvt_fontmap.h",
221 "core/fpdfdoc/pdf_vt.h", 233 "core/fpdfdoc/pdf_vt.h",
222 "core/fpdfdoc/tagged_int.h", 234 "core/fpdfdoc/tagged_int.h",
223 "core/include/fpdfdoc/fpdf_doc.h", 235 "core/include/fpdfdoc/fpdf_doc.h",
224 "core/include/fpdfdoc/fpdf_tagged.h", 236 "core/include/fpdfdoc/fpdf_tagged.h",
225 "core/include/fpdfdoc/fpdf_vt.h",
226 ] 237 ]
227 configs += [ ":pdfium_config" ] 238 configs += [ ":pdfium_config" ]
228 } 239 }
229 240
230 static_library("fpdfapi") { 241 static_library("fpdfapi") {
231 sources = [ 242 sources = [
232 "core/fpdfapi/fpdf_basic_module.cpp", 243 "core/fpdfapi/fpdf_basic_module.cpp",
233 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", 244 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp",
234 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", 245 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp",
235 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", 246 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp",
(...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1662 "//v8:v8_libplatform", 1673 "//v8:v8_libplatform",
1663 ] 1674 ]
1664 include_dirs += [ 1675 include_dirs += [
1665 "//v8", 1676 "//v8",
1666 "//v8/include", 1677 "//v8/include",
1667 ] 1678 ]
1668 configs += [ "//v8:external_startup_data" ] 1679 configs += [ "//v8:external_startup_data" ]
1669 } 1680 }
1670 configs += [ ":pdfium_config" ] 1681 configs += [ ":pdfium_config" ]
1671 } 1682 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfdoc/cpdf_variabletext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698