Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: BUILD.gn

Issue 2376153004: Move core/fpdfapi/include to core/fpdfapi (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | core/fpdfapi/cpdf_modulemgr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 ] 321 ]
322 configs += [ ":pdfium_core_config" ] 322 configs += [ ":pdfium_core_config" ]
323 deps = [ 323 deps = [
324 ":fxcrt", 324 ":fxcrt",
325 ] 325 ]
326 } 326 }
327 327
328 static_library("fpdfapi") { 328 static_library("fpdfapi") {
329 sources = [ 329 sources = [
330 "core/fpdfapi/cpdf_modulemgr.cpp", 330 "core/fpdfapi/cpdf_modulemgr.cpp",
331 "core/fpdfapi/cpdf_modulemgr.h",
331 "core/fpdfapi/cpdf_pagerendercontext.cpp", 332 "core/fpdfapi/cpdf_pagerendercontext.cpp",
333 "core/fpdfapi/cpdf_pagerendercontext.h",
332 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", 334 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp",
333 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", 335 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp",
334 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", 336 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp",
335 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", 337 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp",
336 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", 338 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp",
337 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", 339 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp",
338 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", 340 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp",
339 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", 341 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp",
340 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", 342 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp",
341 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", 343 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 "core/fpdfapi/fpdf_render/cpdf_type3cache.h", 536 "core/fpdfapi/fpdf_render/cpdf_type3cache.h",
535 "core/fpdfapi/fpdf_render/cpdf_type3glyphs.cpp", 537 "core/fpdfapi/fpdf_render/cpdf_type3glyphs.cpp",
536 "core/fpdfapi/fpdf_render/cpdf_type3glyphs.h", 538 "core/fpdfapi/fpdf_render/cpdf_type3glyphs.h",
537 "core/fpdfapi/fpdf_render/fpdf_render.cpp", 539 "core/fpdfapi/fpdf_render/fpdf_render.cpp",
538 "core/fpdfapi/fpdf_render/fpdf_render_cache.cpp", 540 "core/fpdfapi/fpdf_render/fpdf_render_cache.cpp",
539 "core/fpdfapi/fpdf_render/fpdf_render_image.cpp", 541 "core/fpdfapi/fpdf_render/fpdf_render_image.cpp",
540 "core/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp", 542 "core/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp",
541 "core/fpdfapi/fpdf_render/fpdf_render_pattern.cpp", 543 "core/fpdfapi/fpdf_render/fpdf_render_pattern.cpp",
542 "core/fpdfapi/fpdf_render/fpdf_render_text.cpp", 544 "core/fpdfapi/fpdf_render/fpdf_render_text.cpp",
543 "core/fpdfapi/fpdf_render/render_int.h", 545 "core/fpdfapi/fpdf_render/render_int.h",
544 "core/fpdfapi/include/cpdf_modulemgr.h",
545 "core/fpdfapi/include/cpdf_pagerendercontext.h",
546 ] 546 ]
547 configs += [ ":pdfium_core_config" ] 547 configs += [ ":pdfium_core_config" ]
548 deps = [ 548 deps = [
549 ":fxcrt", 549 ":fxcrt",
550 ] 550 ]
551 } 551 }
552 552
553 static_library("fpdftext") { 553 static_library("fpdftext") {
554 sources = [ 554 sources = [
555 "core/fpdftext/cpdf_linkextract.cpp", 555 "core/fpdftext/cpdf_linkextract.cpp",
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1756 } 1756 }
1757 1757
1758 if (pdf_is_standalone) { 1758 if (pdf_is_standalone) {
1759 source_set("samples") { 1759 source_set("samples") {
1760 testonly = true 1760 testonly = true
1761 deps = [ 1761 deps = [
1762 "//samples", 1762 "//samples",
1763 ] 1763 ]
1764 } 1764 }
1765 } 1765 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfapi/cpdf_modulemgr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698