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 pdf_use_skia = false | 5 pdf_use_skia = false |
6 | 6 |
7 config("pdfium_config") { | 7 config("pdfium_config") { |
8 cflags = [] | 8 cflags = [] |
9 include_dirs = [ | 9 include_dirs = [ |
10 "third_party/freetype/include" | 10 "third_party/freetype/include" |
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1533 "//v8", | 1533 "//v8", |
1534 "//v8/include", | 1534 "//v8/include", |
1535 ] | 1535 ] |
1536 public_deps = [ | 1536 public_deps = [ |
1537 "//v8", | 1537 "//v8", |
1538 ] | 1538 ] |
1539 deps = [ | 1539 deps = [ |
1540 "//v8:v8_libplatform", | 1540 "//v8:v8_libplatform", |
1541 ] | 1541 ] |
1542 } | 1542 } |
| 1543 |
| 1544 executable("pdfium_unittests") { |
| 1545 testonly = true |
| 1546 sources = [ |
| 1547 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1548 ] |
| 1549 deps = [ |
| 1550 ":pdfium", |
| 1551 "//base", |
| 1552 "//base/test:run_all_unittests", |
| 1553 "//testing/gtest", |
| 1554 ] |
| 1555 } |
OLD | NEW |