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_config") { | 9 config("pdfium_config") { |
10 cflags = [] | 10 cflags = [] |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 visibility = [ | 194 visibility = [ |
195 ":*", | 195 ":*", |
196 "//:gn_visibility", | 196 "//:gn_visibility", |
197 ] | 197 ] |
198 | 198 |
199 static_library("fdrm") { | 199 static_library("fdrm") { |
200 sources = [ | 200 sources = [ |
201 "core/fdrm/crypto/fx_crypt.cpp", | 201 "core/fdrm/crypto/fx_crypt.cpp", |
202 "core/fdrm/crypto/fx_crypt_aes.cpp", | 202 "core/fdrm/crypto/fx_crypt_aes.cpp", |
203 "core/fdrm/crypto/fx_crypt_sha.cpp", | 203 "core/fdrm/crypto/fx_crypt_sha.cpp", |
204 "core/include/fdrm/fx_crypt.h", | 204 "core/fdrm/crypto/include/fx_crypt.h", |
205 ] | 205 ] |
206 configs += [ ":pdfium_config" ] | 206 configs += [ ":pdfium_config" ] |
207 } | 207 } |
208 | 208 |
209 static_library("fpdfdoc") { | 209 static_library("fpdfdoc") { |
210 sources = [ | 210 sources = [ |
211 "core/fpdfdoc/doc_action.cpp", | 211 "core/fpdfdoc/doc_action.cpp", |
212 "core/fpdfdoc/doc_annot.cpp", | 212 "core/fpdfdoc/doc_annot.cpp", |
213 "core/fpdfdoc/doc_ap.cpp", | 213 "core/fpdfdoc/doc_ap.cpp", |
214 "core/fpdfdoc/doc_basic.cpp", | 214 "core/fpdfdoc/doc_basic.cpp", |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 "core/include/fpdfapi/ipdf_crypto_handler.h", | 383 "core/include/fpdfapi/ipdf_crypto_handler.h", |
384 "core/include/fpdfapi/ipdf_data_avail.h", | 384 "core/include/fpdfapi/ipdf_data_avail.h", |
385 "core/include/fpdfapi/ipdf_security_handler.h", | 385 "core/include/fpdfapi/ipdf_security_handler.h", |
386 ] | 386 ] |
387 configs += [ ":pdfium_config" ] | 387 configs += [ ":pdfium_config" ] |
388 } | 388 } |
389 | 389 |
390 static_library("fpdftext") { | 390 static_library("fpdftext") { |
391 sources = [ | 391 sources = [ |
392 "core/fpdftext/fpdf_text_int.cpp", | 392 "core/fpdftext/fpdf_text_int.cpp", |
| 393 "core/fpdftext/include/ipdf_linkextract.h", |
| 394 "core/fpdftext/include/ipdf_textpage.h", |
| 395 "core/fpdftext/include/ipdf_textpagefind.h", |
393 "core/fpdftext/text_int.h", | 396 "core/fpdftext/text_int.h", |
394 "core/fpdftext/unicodenormalization.cpp", | 397 "core/fpdftext/unicodenormalization.cpp", |
395 "core/fpdftext/unicodenormalizationdata.cpp", | 398 "core/fpdftext/unicodenormalizationdata.cpp", |
396 "core/fpdftext/unicodenormalizationdata.h", | 399 "core/fpdftext/unicodenormalizationdata.h", |
397 "core/include/fpdftext/fpdf_text.h", | |
398 ] | 400 ] |
399 configs += [ ":pdfium_config" ] | 401 configs += [ ":pdfium_config" ] |
400 } | 402 } |
401 | 403 |
402 static_library("fxcodec") { | 404 static_library("fxcodec") { |
403 deps = [ | 405 deps = [ |
404 "third_party:fx_lcms2", | 406 "third_party:fx_lcms2", |
405 "third_party:fx_libopenjpeg", | 407 "third_party:fx_libopenjpeg", |
406 "third_party:fx_zlib", | 408 "third_party:fx_zlib", |
407 | 409 |
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1523 "//v8:v8_libplatform", | 1525 "//v8:v8_libplatform", |
1524 ] | 1526 ] |
1525 include_dirs += [ | 1527 include_dirs += [ |
1526 "//v8", | 1528 "//v8", |
1527 "//v8/include", | 1529 "//v8/include", |
1528 ] | 1530 ] |
1529 configs += [ "//v8:external_startup_data" ] | 1531 configs += [ "//v8:external_startup_data" ] |
1530 } | 1532 } |
1531 configs += [ ":pdfium_config" ] | 1533 configs += [ ":pdfium_config" ] |
1532 } | 1534 } |
OLD | NEW |