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_common_config") { | 9 config("pdfium_common_config") { |
10 cflags = [] | 10 cflags = [] |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 "core/fpdfapi/parser/cpdf_data_avail.cpp", | 493 "core/fpdfapi/parser/cpdf_data_avail.cpp", |
494 "core/fpdfapi/parser/cpdf_data_avail.h", | 494 "core/fpdfapi/parser/cpdf_data_avail.h", |
495 "core/fpdfapi/parser/cpdf_dictionary.cpp", | 495 "core/fpdfapi/parser/cpdf_dictionary.cpp", |
496 "core/fpdfapi/parser/cpdf_dictionary.h", | 496 "core/fpdfapi/parser/cpdf_dictionary.h", |
497 "core/fpdfapi/parser/cpdf_document.cpp", | 497 "core/fpdfapi/parser/cpdf_document.cpp", |
498 "core/fpdfapi/parser/cpdf_document.h", | 498 "core/fpdfapi/parser/cpdf_document.h", |
499 "core/fpdfapi/parser/cpdf_hint_tables.cpp", | 499 "core/fpdfapi/parser/cpdf_hint_tables.cpp", |
500 "core/fpdfapi/parser/cpdf_hint_tables.h", | 500 "core/fpdfapi/parser/cpdf_hint_tables.h", |
501 "core/fpdfapi/parser/cpdf_indirect_object_holder.cpp", | 501 "core/fpdfapi/parser/cpdf_indirect_object_holder.cpp", |
502 "core/fpdfapi/parser/cpdf_indirect_object_holder.h", | 502 "core/fpdfapi/parser/cpdf_indirect_object_holder.h", |
| 503 "core/fpdfapi/parser/cpdf_linearized.cpp", |
| 504 "core/fpdfapi/parser/cpdf_linearized.h", |
503 "core/fpdfapi/parser/cpdf_name.cpp", | 505 "core/fpdfapi/parser/cpdf_name.cpp", |
504 "core/fpdfapi/parser/cpdf_name.h", | 506 "core/fpdfapi/parser/cpdf_name.h", |
505 "core/fpdfapi/parser/cpdf_null.cpp", | 507 "core/fpdfapi/parser/cpdf_null.cpp", |
506 "core/fpdfapi/parser/cpdf_null.h", | 508 "core/fpdfapi/parser/cpdf_null.h", |
507 "core/fpdfapi/parser/cpdf_number.cpp", | 509 "core/fpdfapi/parser/cpdf_number.cpp", |
508 "core/fpdfapi/parser/cpdf_number.h", | 510 "core/fpdfapi/parser/cpdf_number.h", |
509 "core/fpdfapi/parser/cpdf_object.cpp", | 511 "core/fpdfapi/parser/cpdf_object.cpp", |
510 "core/fpdfapi/parser/cpdf_object.h", | 512 "core/fpdfapi/parser/cpdf_object.h", |
511 "core/fpdfapi/parser/cpdf_parser.cpp", | 513 "core/fpdfapi/parser/cpdf_parser.cpp", |
512 "core/fpdfapi/parser/cpdf_parser.h", | 514 "core/fpdfapi/parser/cpdf_parser.h", |
(...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1753 } | 1755 } |
1754 | 1756 |
1755 if (pdf_is_standalone) { | 1757 if (pdf_is_standalone) { |
1756 source_set("samples") { | 1758 source_set("samples") { |
1757 testonly = true | 1759 testonly = true |
1758 deps = [ | 1760 deps = [ |
1759 "//samples", | 1761 "//samples", |
1760 ] | 1762 ] |
1761 } | 1763 } |
1762 } | 1764 } |
OLD | NEW |