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

Side by Side Diff: BUILD.gn

Issue 1840413002: Split core/include/fpdfdoc/fpdf_ap.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/cpvt_color.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_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 "core/fdrm/crypto/fx_crypt.cpp", 204 "core/fdrm/crypto/fx_crypt.cpp",
205 "core/fdrm/crypto/fx_crypt_aes.cpp", 205 "core/fdrm/crypto/fx_crypt_aes.cpp",
206 "core/fdrm/crypto/fx_crypt_sha.cpp", 206 "core/fdrm/crypto/fx_crypt_sha.cpp",
207 "core/fdrm/crypto/include/fx_crypt.h", 207 "core/fdrm/crypto/include/fx_crypt.h",
208 ] 208 ]
209 configs += [ ":pdfium_config" ] 209 configs += [ ":pdfium_config" ]
210 } 210 }
211 211
212 static_library("fpdfdoc") { 212 static_library("fpdfdoc") {
213 sources = [ 213 sources = [
214 "core/fpdfdoc/cpvt_color.cpp",
215 "core/fpdfdoc/cpvt_color.h",
216 "core/fpdfdoc/cpvt_dash.h",
217 "core/fpdfdoc/cpvt_fontmap.cpp",
218 "core/fpdfdoc/cpvt_fontmap.h",
219 "core/fpdfdoc/cpvt_generateap.cpp",
220 "core/fpdfdoc/cpvt_generateap.h",
221 "core/fpdfdoc/cpvt_provider.h",
214 "core/fpdfdoc/doc_action.cpp", 222 "core/fpdfdoc/doc_action.cpp",
215 "core/fpdfdoc/doc_annot.cpp", 223 "core/fpdfdoc/doc_annot.cpp",
216 "core/fpdfdoc/doc_ap.cpp", 224 "core/fpdfdoc/doc_ap.cpp",
217 "core/fpdfdoc/doc_basic.cpp", 225 "core/fpdfdoc/doc_basic.cpp",
218 "core/fpdfdoc/doc_bookmark.cpp", 226 "core/fpdfdoc/doc_bookmark.cpp",
219 "core/fpdfdoc/doc_form.cpp", 227 "core/fpdfdoc/doc_form.cpp",
220 "core/fpdfdoc/doc_formcontrol.cpp", 228 "core/fpdfdoc/doc_formcontrol.cpp",
221 "core/fpdfdoc/doc_formfield.cpp", 229 "core/fpdfdoc/doc_formfield.cpp",
222 "core/fpdfdoc/doc_link.cpp", 230 "core/fpdfdoc/doc_link.cpp",
223 "core/fpdfdoc/doc_metadata.cpp", 231 "core/fpdfdoc/doc_metadata.cpp",
224 "core/fpdfdoc/doc_ocg.cpp", 232 "core/fpdfdoc/doc_ocg.cpp",
225 "core/fpdfdoc/doc_tagged.cpp", 233 "core/fpdfdoc/doc_tagged.cpp",
226 "core/fpdfdoc/doc_utils.cpp", 234 "core/fpdfdoc/doc_utils.cpp",
227 "core/fpdfdoc/doc_utils.h", 235 "core/fpdfdoc/doc_utils.h",
228 "core/fpdfdoc/doc_viewerPreferences.cpp", 236 "core/fpdfdoc/doc_viewerPreferences.cpp",
229 "core/fpdfdoc/doc_vt.cpp", 237 "core/fpdfdoc/doc_vt.cpp",
230 "core/fpdfdoc/doc_vtmodule.cpp", 238 "core/fpdfdoc/doc_vtmodule.cpp",
239 "core/fpdfdoc/include/ipdf_variabletext_provider.h",
240 "core/fpdfdoc/ipdf_variabletext_provider.cpp",
241 "core/fpdfdoc/ipvt_fontmap.h",
231 "core/fpdfdoc/pdf_vt.h", 242 "core/fpdfdoc/pdf_vt.h",
232 "core/fpdfdoc/tagged_int.h", 243 "core/fpdfdoc/tagged_int.h",
233 "core/include/fpdfdoc/fpdf_ap.h",
234 "core/include/fpdfdoc/fpdf_doc.h", 244 "core/include/fpdfdoc/fpdf_doc.h",
235 "core/include/fpdfdoc/fpdf_tagged.h", 245 "core/include/fpdfdoc/fpdf_tagged.h",
236 "core/include/fpdfdoc/fpdf_vt.h", 246 "core/include/fpdfdoc/fpdf_vt.h",
237 ] 247 ]
238 configs += [ ":pdfium_config" ] 248 configs += [ ":pdfium_config" ]
239 } 249 }
240 250
241 static_library("fpdfapi") { 251 static_library("fpdfapi") {
242 sources = [ 252 sources = [
243 "core/fpdfapi/fpdf_basic_module.cpp", 253 "core/fpdfapi/fpdf_basic_module.cpp",
(...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 "//v8:v8_libplatform", 1680 "//v8:v8_libplatform",
1671 ] 1681 ]
1672 include_dirs += [ 1682 include_dirs += [
1673 "//v8", 1683 "//v8",
1674 "//v8/include", 1684 "//v8/include",
1675 ] 1685 ]
1676 configs += [ "//v8:external_startup_data" ] 1686 configs += [ "//v8:external_startup_data" ]
1677 } 1687 }
1678 configs += [ ":pdfium_config" ] 1688 configs += [ ":pdfium_config" ]
1679 } 1689 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfdoc/cpvt_color.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698