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 372 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/fpdf_text_int.h", |
393 "core/fpdftext/include/ipdf_linkextract.h", | 394 "core/fpdftext/include/ipdf_linkextract.h", |
394 "core/fpdftext/include/ipdf_textpage.h", | 395 "core/fpdftext/include/ipdf_textpage.h", |
395 "core/fpdftext/include/ipdf_textpagefind.h", | 396 "core/fpdftext/include/ipdf_textpagefind.h", |
396 "core/fpdftext/text_int.h", | 397 "core/fpdftext/text_int.h", |
397 "core/fpdftext/unicodenormalization.cpp", | 398 "core/fpdftext/unicodenormalization.cpp", |
| 399 "core/fpdftext/unicodenormalization.h", |
398 "core/fpdftext/unicodenormalizationdata.cpp", | 400 "core/fpdftext/unicodenormalizationdata.cpp", |
399 "core/fpdftext/unicodenormalizationdata.h", | 401 "core/fpdftext/unicodenormalizationdata.h", |
400 ] | 402 ] |
401 configs += [ ":pdfium_config" ] | 403 configs += [ ":pdfium_config" ] |
402 } | 404 } |
403 | 405 |
404 static_library("fxcodec") { | 406 static_library("fxcodec") { |
405 deps = [ | 407 deps = [ |
406 "third_party:fx_lcms2", | 408 "third_party:fx_lcms2", |
407 "third_party:fx_libopenjpeg", | 409 "third_party:fx_libopenjpeg", |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1521 "//v8:v8_libplatform", | 1523 "//v8:v8_libplatform", |
1522 ] | 1524 ] |
1523 include_dirs += [ | 1525 include_dirs += [ |
1524 "//v8", | 1526 "//v8", |
1525 "//v8/include", | 1527 "//v8/include", |
1526 ] | 1528 ] |
1527 configs += [ "//v8:external_startup_data" ] | 1529 configs += [ "//v8:external_startup_data" ] |
1528 } | 1530 } |
1529 configs += [ ":pdfium_config" ] | 1531 configs += [ ":pdfium_config" ] |
1530 } | 1532 } |
OLD | NEW |