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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 "core/fpdfdoc/include/cpvt_line.h", | 305 "core/fpdfdoc/include/cpvt_line.h", |
306 "core/fpdfdoc/include/cpvt_secprops.h", | 306 "core/fpdfdoc/include/cpvt_secprops.h", |
307 "core/fpdfdoc/include/cpvt_section.h", | 307 "core/fpdfdoc/include/cpvt_section.h", |
308 "core/fpdfdoc/include/cpvt_word.h", | 308 "core/fpdfdoc/include/cpvt_word.h", |
309 "core/fpdfdoc/include/cpvt_wordplace.h", | 309 "core/fpdfdoc/include/cpvt_wordplace.h", |
310 "core/fpdfdoc/include/cpvt_wordprops.h", | 310 "core/fpdfdoc/include/cpvt_wordprops.h", |
311 "core/fpdfdoc/include/cpvt_wordrange.h", | 311 "core/fpdfdoc/include/cpvt_wordrange.h", |
312 "core/fpdfdoc/include/fpdf_tagged.h", | 312 "core/fpdfdoc/include/fpdf_tagged.h", |
313 "core/fpdfdoc/include/ipdf_formnotify.h", | 313 "core/fpdfdoc/include/ipdf_formnotify.h", |
314 "core/fpdfdoc/include/ipvt_fontmap.h", | 314 "core/fpdfdoc/include/ipvt_fontmap.h", |
315 "core/fpdfdoc/ipdf_formnotify.cpp", | |
316 "core/fpdfdoc/tagged_int.h", | 315 "core/fpdfdoc/tagged_int.h", |
317 ] | 316 ] |
318 configs += [ ":pdfium_core_config" ] | 317 configs += [ ":pdfium_core_config" ] |
319 deps = [ | 318 deps = [ |
320 ":fxcrt", | 319 ":fxcrt", |
321 ] | 320 ] |
322 } | 321 } |
323 | 322 |
324 static_library("fpdfapi") { | 323 static_library("fpdfapi") { |
325 sources = [ | 324 sources = [ |
(...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1748 } | 1747 } |
1749 | 1748 |
1750 if (pdf_is_standalone) { | 1749 if (pdf_is_standalone) { |
1751 source_set("samples") { | 1750 source_set("samples") { |
1752 testonly = true | 1751 testonly = true |
1753 deps = [ | 1752 deps = [ |
1754 "//samples", | 1753 "//samples", |
1755 ] | 1754 ] |
1756 } | 1755 } |
1757 } | 1756 } |
OLD | NEW |