| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_common_config") { | 9 config("pdfium_common_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "core/fdrm/crypto/fx_crypt.cpp", | 188 "core/fdrm/crypto/fx_crypt.cpp", |
| 189 "core/fdrm/crypto/fx_crypt_aes.cpp", | 189 "core/fdrm/crypto/fx_crypt_aes.cpp", |
| 190 "core/fdrm/crypto/fx_crypt_sha.cpp", | 190 "core/fdrm/crypto/fx_crypt_sha.cpp", |
| 191 "core/fdrm/crypto/include/fx_crypt.h", | 191 "core/fdrm/crypto/include/fx_crypt.h", |
| 192 ] | 192 ] |
| 193 configs += [ ":pdfium_core_config" ] | 193 configs += [ ":pdfium_core_config" ] |
| 194 } | 194 } |
| 195 | 195 |
| 196 static_library("fpdfdoc") { | 196 static_library("fpdfdoc") { |
| 197 sources = [ | 197 sources = [ |
| 198 "core/fpdfdoc/clines.cpp", |
| 199 "core/fpdfdoc/clines.h", |
| 198 "core/fpdfdoc/cpdf_variabletext.cpp", | 200 "core/fpdfdoc/cpdf_variabletext.cpp", |
| 199 "core/fpdfdoc/cpvt_color.cpp", | 201 "core/fpdfdoc/cpvt_color.cpp", |
| 200 "core/fpdfdoc/cpvt_color.h", | 202 "core/fpdfdoc/cpvt_color.h", |
| 201 "core/fpdfdoc/cpvt_dash.h", | 203 "core/fpdfdoc/cpvt_dash.h", |
| 202 "core/fpdfdoc/cpvt_floatrect.h", | 204 "core/fpdfdoc/cpvt_floatrect.h", |
| 203 "core/fpdfdoc/cpvt_fontmap.cpp", | 205 "core/fpdfdoc/cpvt_fontmap.cpp", |
| 204 "core/fpdfdoc/cpvt_fontmap.h", | 206 "core/fpdfdoc/cpvt_fontmap.h", |
| 205 "core/fpdfdoc/cpvt_generateap.cpp", | 207 "core/fpdfdoc/cpvt_generateap.cpp", |
| 206 "core/fpdfdoc/cpvt_generateap.h", | 208 "core/fpdfdoc/cpvt_generateap.h", |
| 207 "core/fpdfdoc/cpvt_lineinfo.h", | 209 "core/fpdfdoc/cpvt_lineinfo.h", |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 } | 1706 } |
| 1705 | 1707 |
| 1706 if (pdf_is_standalone) { | 1708 if (pdf_is_standalone) { |
| 1707 source_set("samples") { | 1709 source_set("samples") { |
| 1708 testonly = true | 1710 testonly = true |
| 1709 deps = [ | 1711 deps = [ |
| 1710 "//samples", | 1712 "//samples", |
| 1711 ] | 1713 ] |
| 1712 } | 1714 } |
| 1713 } | 1715 } |
| OLD | NEW |