| 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 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1549 ] | 1549 ] |
| 1550 deps = [ | 1550 deps = [ |
| 1551 "//v8:v8_libplatform", | 1551 "//v8:v8_libplatform", |
| 1552 ] | 1552 ] |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 test("pdfium_unittests") { | 1555 test("pdfium_unittests") { |
| 1556 sources = [ | 1556 sources = [ |
| 1557 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1557 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1558 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 1558 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1559 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1559 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 1560 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1560 "testing/fx_string_testhelpers.cpp", | 1561 "testing/fx_string_testhelpers.cpp", |
| 1561 "testing/fx_string_testhelpers.h", | 1562 "testing/fx_string_testhelpers.h", |
| 1562 "xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", | 1563 "xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
| 1563 "xfa/src/fxfa/src/parser/xfa_utils_imp_unittest.cpp", | 1564 "xfa/src/fxfa/src/parser/xfa_utils_imp_unittest.cpp", |
| 1564 ] | 1565 ] |
| 1565 deps = [ | 1566 deps = [ |
| 1566 "//testing/gtest", | 1567 "//testing/gtest", |
| 1567 "//testing/gtest:gtest_main", | 1568 "//testing/gtest:gtest_main", |
| 1568 ":pdfium" | 1569 ":pdfium" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 1596 ":pdfium" | 1597 ":pdfium" |
| 1597 ] | 1598 ] |
| 1598 include_dirs = [ | 1599 include_dirs = [ |
| 1599 ".", | 1600 ".", |
| 1600 "//v8", | 1601 "//v8", |
| 1601 "//v8/include", | 1602 "//v8/include", |
| 1602 ] | 1603 ] |
| 1603 configs -= [ "//build/config/compiler:chromium_code" ] | 1604 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1604 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1605 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1605 } | 1606 } |
| OLD | NEW |