OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("pdfium.gni") | 6 import("pdfium.gni") |
7 | 7 |
8 config("pdfium_config") { | 8 config("pdfium_config") { |
9 cflags = [] | 9 cflags = [] |
10 include_dirs = [ "third_party/freetype/include" ] | 10 include_dirs = [ "third_party/freetype/include" ] |
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 configs += [ | 1493 configs += [ |
1494 ":pdfium_config", | 1494 ":pdfium_config", |
1495 "//build/config/compiler:no_chromium_code", | 1495 "//build/config/compiler:no_chromium_code", |
1496 ] | 1496 ] |
1497 } | 1497 } |
1498 | 1498 |
1499 test("pdfium_embeddertests") { | 1499 test("pdfium_embeddertests") { |
1500 sources = [ | 1500 sources = [ |
1501 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp", | 1501 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp", |
1502 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp", | 1502 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp", |
| 1503 "core/src/fpdfapi/fpdf_render/fpdf_render_pattern_embeddertest.cpp", |
1503 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", | 1504 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", |
1504 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", | 1505 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", |
1505 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", | 1506 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", |
1506 "fpdfsdk/src/fpdftext_embeddertest.cpp", | 1507 "fpdfsdk/src/fpdftext_embeddertest.cpp", |
1507 "fpdfsdk/src/fpdfview_c_api_test.c", | 1508 "fpdfsdk/src/fpdfview_c_api_test.c", |
1508 "fpdfsdk/src/fpdfview_c_api_test.h", | 1509 "fpdfsdk/src/fpdfview_c_api_test.h", |
1509 "fpdfsdk/src/fpdfview_embeddertest.cpp", | 1510 "fpdfsdk/src/fpdfview_embeddertest.cpp", |
1510 "testing/embedder_test.cpp", | 1511 "testing/embedder_test.cpp", |
1511 "testing/embedder_test.h", | 1512 "testing/embedder_test.h", |
1512 "testing/embedder_test_mock_delegate.h", | 1513 "testing/embedder_test_mock_delegate.h", |
(...skipping 20 matching lines...) Expand all Loading... |
1533 "//v8", | 1534 "//v8", |
1534 "//v8/include", | 1535 "//v8/include", |
1535 ] | 1536 ] |
1536 } | 1537 } |
1537 configs -= [ "//build/config/compiler:chromium_code" ] | 1538 configs -= [ "//build/config/compiler:chromium_code" ] |
1538 configs += [ | 1539 configs += [ |
1539 ":pdfium_config", | 1540 ":pdfium_config", |
1540 "//build/config/compiler:no_chromium_code", | 1541 "//build/config/compiler:no_chromium_code", |
1541 ] | 1542 ] |
1542 } | 1543 } |
OLD | NEW |