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

Side by Side Diff: BUILD.gn

Issue 1423103002: XFA: Manual merge of Clean up IFX_BidiChar (Closed) Base URL: https://pdfium.googlesource.com/pdfium@xfa
Patch Set: missing files Created 5 years, 1 month 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/include/fxcrt/fx_arb.h » ('j') | core/include/fxcrt/fx_arb.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("pdfium.gni") 6 import("pdfium.gni")
7 7
8 config("pdfium_config") { 8 config("pdfium_config") {
9 cflags = [] 9 cflags = []
10 include_dirs = [ "third_party/freetype/include" ] 10 include_dirs = [ "third_party/freetype/include" ]
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 # http://code.google.com/p/pdfium/issues/detail?id=188 462 # http://code.google.com/p/pdfium/issues/detail?id=188
463 "-Wno-switch", 463 "-Wno-switch",
464 ] 464 ]
465 } 465 }
466 } 466 }
467 467
468 static_library("fxcrt") { 468 static_library("fxcrt") {
469 sources = [ 469 sources = [
470 "core/include/fxcrt/fx_arb.h", 470 "core/include/fxcrt/fx_arb.h",
471 "core/include/fxcrt/fx_basic.h", 471 "core/include/fxcrt/fx_basic.h",
472 "core/include/fxcrt/fx_bidi.h",
472 "core/include/fxcrt/fx_coordinates.h", 473 "core/include/fxcrt/fx_coordinates.h",
473 "core/include/fxcrt/fx_ext.h", 474 "core/include/fxcrt/fx_ext.h",
474 "core/include/fxcrt/fx_memory.h", 475 "core/include/fxcrt/fx_memory.h",
475 "core/include/fxcrt/fx_safe_types.h", 476 "core/include/fxcrt/fx_safe_types.h",
476 "core/include/fxcrt/fx_stream.h", 477 "core/include/fxcrt/fx_stream.h",
477 "core/include/fxcrt/fx_string.h", 478 "core/include/fxcrt/fx_string.h",
478 "core/include/fxcrt/fx_system.h", 479 "core/include/fxcrt/fx_system.h",
479 "core/include/fxcrt/fx_ucd.h", 480 "core/include/fxcrt/fx_ucd.h",
480 "core/include/fxcrt/fx_xml.h", 481 "core/include/fxcrt/fx_xml.h",
481 "core/src/fxcrt/extension.h", 482 "core/src/fxcrt/extension.h",
482 "core/src/fxcrt/fx_arabic.cpp", 483 "core/src/fxcrt/fx_arabic.cpp",
483 "core/src/fxcrt/fx_arabic.h", 484 "core/src/fxcrt/fx_arabic.h",
484 "core/src/fxcrt/fx_basic_array.cpp", 485 "core/src/fxcrt/fx_basic_array.cpp",
485 "core/src/fxcrt/fx_basic_bstring.cpp", 486 "core/src/fxcrt/fx_basic_bstring.cpp",
486 "core/src/fxcrt/fx_basic_buffer.cpp", 487 "core/src/fxcrt/fx_basic_buffer.cpp",
487 "core/src/fxcrt/fx_basic_coords.cpp", 488 "core/src/fxcrt/fx_basic_coords.cpp",
488 "core/src/fxcrt/fx_basic_gcc.cpp", 489 "core/src/fxcrt/fx_basic_gcc.cpp",
489 "core/src/fxcrt/fx_basic_list.cpp", 490 "core/src/fxcrt/fx_basic_list.cpp",
490 "core/src/fxcrt/fx_basic_maps.cpp", 491 "core/src/fxcrt/fx_basic_maps.cpp",
491 "core/src/fxcrt/fx_basic_memmgr.cpp", 492 "core/src/fxcrt/fx_basic_memmgr.cpp",
492 "core/src/fxcrt/fx_basic_plex.cpp", 493 "core/src/fxcrt/fx_basic_plex.cpp",
493 "core/src/fxcrt/fx_basic_utf.cpp", 494 "core/src/fxcrt/fx_basic_utf.cpp",
494 "core/src/fxcrt/fx_basic_util.cpp", 495 "core/src/fxcrt/fx_basic_util.cpp",
495 "core/src/fxcrt/fx_basic_wstring.cpp", 496 "core/src/fxcrt/fx_basic_wstring.cpp",
497 "core/src/fxcrt/fx_bidi.cpp",
496 "core/src/fxcrt/fx_extension.cpp", 498 "core/src/fxcrt/fx_extension.cpp",
497 "core/src/fxcrt/fx_ucddata.cpp", 499 "core/src/fxcrt/fx_ucddata.cpp",
498 "core/src/fxcrt/fx_unicode.cpp", 500 "core/src/fxcrt/fx_unicode.cpp",
499 "core/src/fxcrt/fx_xml_composer.cpp", 501 "core/src/fxcrt/fx_xml_composer.cpp",
500 "core/src/fxcrt/fx_xml_parser.cpp", 502 "core/src/fxcrt/fx_xml_parser.cpp",
501 "core/src/fxcrt/fxcrt_platforms.cpp", 503 "core/src/fxcrt/fxcrt_platforms.cpp",
502 "core/src/fxcrt/fxcrt_platforms.h", 504 "core/src/fxcrt/fxcrt_platforms.h",
503 "core/src/fxcrt/fxcrt_posix.cpp", 505 "core/src/fxcrt/fxcrt_posix.cpp",
504 "core/src/fxcrt/fxcrt_posix.h", 506 "core/src/fxcrt/fxcrt_posix.h",
505 "core/src/fxcrt/fxcrt_windows.cpp", 507 "core/src/fxcrt/fxcrt_windows.cpp",
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
1535 "//v8", 1537 "//v8",
1536 "//v8/include", 1538 "//v8/include",
1537 ] 1539 ]
1538 } 1540 }
1539 configs -= [ "//build/config/compiler:chromium_code" ] 1541 configs -= [ "//build/config/compiler:chromium_code" ]
1540 configs += [ 1542 configs += [
1541 ":pdfium_config", 1543 ":pdfium_config",
1542 "//build/config/compiler:no_chromium_code", 1544 "//build/config/compiler:no_chromium_code",
1543 ] 1545 ]
1544 } 1546 }
OLDNEW
« no previous file with comments | « no previous file | core/include/fxcrt/fx_arb.h » ('j') | core/include/fxcrt/fx_arb.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698