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

Side by Side Diff: BUILD.gn

Issue 2381863003: Move core/fpdfapi/fpdf_edit/include to core/fpdfapi/fpdf_edit (Closed)
Patch Set: 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/fpdf_edit/cpdf_creator.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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", 385 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp",
386 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp", 386 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp",
387 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp", 387 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp",
388 "core/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp", 388 "core/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp",
389 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp", 389 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp",
390 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp", 390 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp",
391 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp", 391 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp",
392 "core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp", 392 "core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp",
393 "core/fpdfapi/fpdf_cmaps/cmap_int.h", 393 "core/fpdfapi/fpdf_cmaps/cmap_int.h",
394 "core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp", 394 "core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp",
395 "core/fpdfapi/fpdf_edit/cpdf_creator.h",
395 "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.cpp", 396 "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.cpp",
397 "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.h",
396 "core/fpdfapi/fpdf_edit/editint.h", 398 "core/fpdfapi/fpdf_edit/editint.h",
397 "core/fpdfapi/fpdf_edit/fpdf_edit_create.cpp", 399 "core/fpdfapi/fpdf_edit/fpdf_edit_create.cpp",
398 "core/fpdfapi/fpdf_edit/include/cpdf_creator.h",
399 "core/fpdfapi/fpdf_edit/include/cpdf_pagecontentgenerator.h",
400 "core/fpdfapi/fpdf_font/cpdf_cidfont.cpp", 400 "core/fpdfapi/fpdf_font/cpdf_cidfont.cpp",
401 "core/fpdfapi/fpdf_font/cpdf_cidfont.h", 401 "core/fpdfapi/fpdf_font/cpdf_cidfont.h",
402 "core/fpdfapi/fpdf_font/cpdf_font.cpp", 402 "core/fpdfapi/fpdf_font/cpdf_font.cpp",
403 "core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp", 403 "core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp",
404 "core/fpdfapi/fpdf_font/cpdf_simplefont.cpp", 404 "core/fpdfapi/fpdf_font/cpdf_simplefont.cpp",
405 "core/fpdfapi/fpdf_font/cpdf_simplefont.h", 405 "core/fpdfapi/fpdf_font/cpdf_simplefont.h",
406 "core/fpdfapi/fpdf_font/cpdf_truetypefont.cpp", 406 "core/fpdfapi/fpdf_font/cpdf_truetypefont.cpp",
407 "core/fpdfapi/fpdf_font/cpdf_truetypefont.h", 407 "core/fpdfapi/fpdf_font/cpdf_truetypefont.h",
408 "core/fpdfapi/fpdf_font/cpdf_type1font.cpp", 408 "core/fpdfapi/fpdf_font/cpdf_type1font.cpp",
409 "core/fpdfapi/fpdf_font/cpdf_type1font.h", 409 "core/fpdfapi/fpdf_font/cpdf_type1font.h",
(...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfapi/fpdf_edit/cpdf_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698