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 |
11 # methods are used from it. | 11 # methods are used from it. |
12 pdfium_bundle_freetype = !is_linux | 12 pdfium_bundle_freetype = !is_linux |
13 } | 13 } |
14 | 14 |
15 config("pdfium_config") { | 15 config("pdfium_config") { |
16 cflags = [] | 16 cflags = [] |
17 include_dirs = [ "third_party/freetype/include" ] | 17 include_dirs = [ "third_party/freetype/include" ] |
18 defines = [ | 18 defines = [ |
19 "OPJ_STATIC", | 19 "OPJ_STATIC", |
| 20 "PDF_ENABLE_V8", |
20 "V8_DEPRECATION_WARNINGS", | 21 "V8_DEPRECATION_WARNINGS", |
21 "_CRT_SECURE_NO_WARNINGS", | 22 "_CRT_SECURE_NO_WARNINGS", |
22 ] | 23 ] |
23 | 24 |
24 if (pdf_use_skia) { | 25 if (pdf_use_skia) { |
25 defines += [ "_SKIA_SUPPORT_" ] | 26 defines += [ "_SKIA_SUPPORT_" ] |
26 } | 27 } |
27 | 28 |
28 if (is_linux) { | 29 if (is_linux) { |
29 if (current_cpu == "x64") { | 30 if (current_cpu == "x64") { |
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 "//v8", | 798 "//v8", |
798 "//v8/include", | 799 "//v8/include", |
799 "." | 800 "." |
800 ] | 801 ] |
801 configs -= [ "//build/config/compiler:chromium_code" ] | 802 configs -= [ "//build/config/compiler:chromium_code" ] |
802 configs += [ | 803 configs += [ |
803 ":pdfium_config", | 804 ":pdfium_config", |
804 "//build/config/compiler:no_chromium_code", | 805 "//build/config/compiler:no_chromium_code", |
805 ] | 806 ] |
806 } | 807 } |
OLD | NEW |