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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 "core/src/fxcrt/fx_bidi.cpp", | 486 "core/src/fxcrt/fx_bidi.cpp", |
487 "core/src/fxcrt/fx_extension.cpp", | 487 "core/src/fxcrt/fx_extension.cpp", |
488 "core/src/fxcrt/fx_ucddata.cpp", | 488 "core/src/fxcrt/fx_ucddata.cpp", |
489 "core/src/fxcrt/fx_unicode.cpp", | 489 "core/src/fxcrt/fx_unicode.cpp", |
490 "core/src/fxcrt/fx_xml_composer.cpp", | 490 "core/src/fxcrt/fx_xml_composer.cpp", |
491 "core/src/fxcrt/fx_xml_parser.cpp", | 491 "core/src/fxcrt/fx_xml_parser.cpp", |
492 "core/src/fxcrt/fxcrt_platforms.cpp", | 492 "core/src/fxcrt/fxcrt_platforms.cpp", |
493 "core/src/fxcrt/fxcrt_platforms.h", | 493 "core/src/fxcrt/fxcrt_platforms.h", |
494 "core/src/fxcrt/fxcrt_posix.cpp", | 494 "core/src/fxcrt/fxcrt_posix.cpp", |
495 "core/src/fxcrt/fxcrt_posix.h", | 495 "core/src/fxcrt/fxcrt_posix.h", |
| 496 "core/src/fxcrt/fxcrt_stream.cpp", |
496 "core/src/fxcrt/fxcrt_windows.cpp", | 497 "core/src/fxcrt/fxcrt_windows.cpp", |
497 "core/src/fxcrt/fxcrt_windows.h", | 498 "core/src/fxcrt/fxcrt_windows.h", |
498 "core/src/fxcrt/plex.h", | 499 "core/src/fxcrt/plex.h", |
499 "core/src/fxcrt/xml_int.h", | 500 "core/src/fxcrt/xml_int.h", |
500 ] | 501 ] |
501 if (pdf_enable_xfa) { | 502 if (pdf_enable_xfa) { |
502 sources += [ | 503 sources += [ |
503 "core/include/fxcrt/fx_arb.h", | 504 "core/include/fxcrt/fx_arb.h", |
504 "core/src/fxcrt/fx_arabic.cpp", | 505 "core/src/fxcrt/fx_arabic.cpp", |
505 "core/src/fxcrt/fx_arabic.h", | 506 "core/src/fxcrt/fx_arabic.h", |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 "//v8:v8_libplatform", | 1494 "//v8:v8_libplatform", |
1494 ] | 1495 ] |
1495 include_dirs += [ | 1496 include_dirs += [ |
1496 "//v8", | 1497 "//v8", |
1497 "//v8/include", | 1498 "//v8/include", |
1498 ] | 1499 ] |
1499 configs += [ "//v8:external_startup_data" ] | 1500 configs += [ "//v8:external_startup_data" ] |
1500 } | 1501 } |
1501 configs += [ ":pdfium_config" ] | 1502 configs += [ ":pdfium_config" ] |
1502 } | 1503 } |
OLD | NEW |