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 = [ |
| 11 "third_party/freetype/include", |
| 12 "third_party/freetype/include/freetype", |
| 13 ] |
11 defines = [ | 14 defines = [ |
12 "OPJ_STATIC", | 15 "OPJ_STATIC", |
13 "V8_DEPRECATION_WARNINGS", | 16 "V8_DEPRECATION_WARNINGS", |
14 "_CRT_SECURE_NO_WARNINGS", | 17 "_CRT_SECURE_NO_WARNINGS", |
15 ] | 18 ] |
16 | 19 |
17 if (pdf_use_skia) { | 20 if (pdf_use_skia) { |
18 defines += [ "_SKIA_SUPPORT_" ] | 21 defines += [ "_SKIA_SUPPORT_" ] |
19 } | 22 } |
20 | 23 |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 "//v8", | 775 "//v8", |
773 "//v8:v8_libplatform", | 776 "//v8:v8_libplatform", |
774 ] | 777 ] |
775 include_dirs += [ | 778 include_dirs += [ |
776 "//v8", | 779 "//v8", |
777 "//v8/include", | 780 "//v8/include", |
778 ] | 781 ] |
779 } | 782 } |
780 configs += [ ":pdfium_config" ] | 783 configs += [ ":pdfium_config" ] |
781 } | 784 } |
OLD | NEW |