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 | 6 |
7 pdf_use_skia = false | 7 pdf_use_skia = false |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 # On Android there's no system FreeType. On Windows and Mac, only a few | 10 # On Android there's no system FreeType. On Windows and Mac, only a few |
(...skipping 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1452 sources = [ | 1452 sources = [ |
1453 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp", | 1453 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp", |
1454 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp", | 1454 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp", |
1455 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", | 1455 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", |
1456 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", | 1456 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", |
1457 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", | 1457 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", |
1458 "fpdfsdk/src/fpdftext_embeddertest.cpp", | 1458 "fpdfsdk/src/fpdftext_embeddertest.cpp", |
1459 "fpdfsdk/src/fpdfview_c_api_test.c", | 1459 "fpdfsdk/src/fpdfview_c_api_test.c", |
1460 "fpdfsdk/src/fpdfview_c_api_test.h", | 1460 "fpdfsdk/src/fpdfview_c_api_test.h", |
1461 "fpdfsdk/src/fpdfview_embeddertest.cpp", | 1461 "fpdfsdk/src/fpdfview_embeddertest.cpp", |
| 1462 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp", |
1462 "testing/embedder_test.cpp", | 1463 "testing/embedder_test.cpp", |
1463 "testing/embedder_test.h", | 1464 "testing/embedder_test.h", |
1464 "testing/embedder_test_mock_delegate.h", | 1465 "testing/embedder_test_mock_delegate.h", |
1465 "testing/embedder_test_timer_handling_delegate.h", | 1466 "testing/embedder_test_timer_handling_delegate.h", |
1466 "testing/fx_string_testhelpers.cpp", | 1467 "testing/fx_string_testhelpers.cpp", |
1467 "testing/fx_string_testhelpers.h", | 1468 "testing/fx_string_testhelpers.h", |
1468 ] | 1469 ] |
1469 deps = [ | 1470 deps = [ |
1470 "//testing/gmock", | 1471 "//testing/gmock", |
1471 "//testing/gtest", | 1472 "//testing/gtest", |
1472 "//v8:v8_libplatform", | 1473 "//v8:v8_libplatform", |
1473 ":pdfium" | 1474 ":pdfium" |
1474 ] | 1475 ] |
1475 include_dirs = [ | 1476 include_dirs = [ |
1476 ".", | 1477 ".", |
1477 "//v8", | 1478 "//v8", |
1478 "//v8/include", | 1479 "//v8/include", |
1479 ] | 1480 ] |
1480 configs -= [ "//build/config/compiler:chromium_code" ] | 1481 configs -= [ "//build/config/compiler:chromium_code" ] |
1481 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1482 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
1482 } | 1483 } |
OLD | NEW |