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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 # Targets below this are only visible within this file (and to the | 215 # Targets below this are only visible within this file (and to the |
216 # top-level gn_visibility target used to help gn_all build everything). | 216 # top-level gn_visibility target used to help gn_all build everything). |
217 visibility = [ | 217 visibility = [ |
218 ":*", | 218 ":*", |
219 "//:gn_visibility", | 219 "//:gn_visibility", |
220 ] | 220 ] |
221 | 221 |
222 static_library("fdrm") { | 222 static_library("fdrm") { |
223 sources = [ | 223 sources = [ |
224 "core/fdrm/crypto/fx_crypt.cpp", | 224 "core/fdrm/crypto/fx_crypt.cpp", |
| 225 "core/fdrm/crypto/fx_crypt.h", |
225 "core/fdrm/crypto/fx_crypt_aes.cpp", | 226 "core/fdrm/crypto/fx_crypt_aes.cpp", |
226 "core/fdrm/crypto/fx_crypt_sha.cpp", | 227 "core/fdrm/crypto/fx_crypt_sha.cpp", |
227 "core/fdrm/crypto/include/fx_crypt.h", | |
228 ] | 228 ] |
229 configs += [ ":pdfium_core_config" ] | 229 configs += [ ":pdfium_core_config" ] |
230 deps = [ | 230 deps = [ |
231 ":fxcrt", | 231 ":fxcrt", |
232 ] | 232 ] |
233 } | 233 } |
234 | 234 |
235 static_library("fpdfdoc") { | 235 static_library("fpdfdoc") { |
236 sources = [ | 236 sources = [ |
237 "core/fpdfdoc/cline.cpp", | 237 "core/fpdfdoc/cline.cpp", |
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1758 } | 1758 } |
1759 | 1759 |
1760 if (pdf_is_standalone) { | 1760 if (pdf_is_standalone) { |
1761 source_set("samples") { | 1761 source_set("samples") { |
1762 testonly = true | 1762 testonly = true |
1763 deps = [ | 1763 deps = [ |
1764 "//samples", | 1764 "//samples", |
1765 ] | 1765 ] |
1766 } | 1766 } |
1767 } | 1767 } |
OLD | NEW |