| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//build_overrides/pdfium.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 import("pdfium.gni") | |
| 8 | 8 |
| 9 config("pdfium_config") { | 9 config("pdfium_config") { |
| 10 cflags = [] | 10 cflags = [] |
| 11 include_dirs = [ | 11 include_dirs = [ |
| 12 ".", | 12 ".", |
| 13 "third_party/freetype/include", | 13 "third_party/freetype/include", |
| 14 "third_party/freetype/include/freetype", | 14 "third_party/freetype/include/freetype", |
| 15 ] | 15 ] |
| 16 defines = [ | 16 defines = [ |
| 17 "OPJ_STATIC", | 17 "OPJ_STATIC", |
| (...skipping 1690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1708 } | 1708 } |
| 1709 | 1709 |
| 1710 if (pdf_is_standalone) { | 1710 if (pdf_is_standalone) { |
| 1711 source_set("samples") { | 1711 source_set("samples") { |
| 1712 testonly = true | 1712 testonly = true |
| 1713 deps = [ | 1713 deps = [ |
| 1714 "//samples", | 1714 "//samples", |
| 1715 ] | 1715 ] |
| 1716 } | 1716 } |
| 1717 } | 1717 } |
| OLD | NEW |