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

Side by Side Diff: BUILD.gn

Issue 1805683002: Add a Retained Pointer smart class. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Move FreeDeleter and such to fx_memory.h Created 4 years, 9 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
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_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 "core/fxcrt/fx_xml_parser.cpp", 531 "core/fxcrt/fx_xml_parser.cpp",
532 "core/fxcrt/fxcrt_platforms.cpp", 532 "core/fxcrt/fxcrt_platforms.cpp",
533 "core/fxcrt/fxcrt_platforms.h", 533 "core/fxcrt/fxcrt_platforms.h",
534 "core/fxcrt/fxcrt_posix.cpp", 534 "core/fxcrt/fxcrt_posix.cpp",
535 "core/fxcrt/fxcrt_posix.h", 535 "core/fxcrt/fxcrt_posix.h",
536 "core/fxcrt/fxcrt_stream.cpp", 536 "core/fxcrt/fxcrt_stream.cpp",
537 "core/fxcrt/fxcrt_windows.cpp", 537 "core/fxcrt/fxcrt_windows.cpp",
538 "core/fxcrt/fxcrt_windows.h", 538 "core/fxcrt/fxcrt_windows.h",
539 "core/fxcrt/plex.h", 539 "core/fxcrt/plex.h",
540 "core/fxcrt/xml_int.h", 540 "core/fxcrt/xml_int.h",
541 "core/include/fxcrt/cfx_retain_ptr.h",
dsinclair 2016/03/16 13:47:45 Can we put this in core/fxcrt/include?
Tom Sepez 2016/03/16 19:12:55 Done.
541 "core/include/fxcrt/fx_basic.h", 542 "core/include/fxcrt/fx_basic.h",
542 "core/include/fxcrt/fx_bidi.h", 543 "core/include/fxcrt/fx_bidi.h",
543 "core/include/fxcrt/fx_coordinates.h", 544 "core/include/fxcrt/fx_coordinates.h",
544 "core/include/fxcrt/fx_ext.h", 545 "core/include/fxcrt/fx_ext.h",
545 "core/include/fxcrt/fx_memory.h", 546 "core/include/fxcrt/fx_memory.h",
546 "core/include/fxcrt/fx_safe_types.h", 547 "core/include/fxcrt/fx_safe_types.h",
547 "core/include/fxcrt/fx_stream.h", 548 "core/include/fxcrt/fx_stream.h",
548 "core/include/fxcrt/fx_string.h", 549 "core/include/fxcrt/fx_string.h",
549 "core/include/fxcrt/fx_system.h", 550 "core/include/fxcrt/fx_system.h",
550 "core/include/fxcrt/fx_ucd.h", 551 "core/include/fxcrt/fx_ucd.h",
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after
1460 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", 1461 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp",
1461 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", 1462 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp",
1462 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", 1463 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp",
1463 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", 1464 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp",
1464 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", 1465 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp",
1465 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", 1466 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp",
1466 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", 1467 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp",
1467 "core/fpdfdoc/doc_basic_unittest.cpp", 1468 "core/fpdfdoc/doc_basic_unittest.cpp",
1468 "core/fpdftext/fpdf_text_int_unittest.cpp", 1469 "core/fpdftext/fpdf_text_int_unittest.cpp",
1469 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", 1470 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp",
1471 "core/fxcrt/cfx_retain_ptr_unittest.cpp",
1470 "core/fxcrt/fx_basic_bstring_unittest.cpp", 1472 "core/fxcrt/fx_basic_bstring_unittest.cpp",
1471 "core/fxcrt/fx_basic_gcc_unittest.cpp", 1473 "core/fxcrt/fx_basic_gcc_unittest.cpp",
1472 "core/fxcrt/fx_basic_memmgr_unittest.cpp", 1474 "core/fxcrt/fx_basic_memmgr_unittest.cpp",
1473 "core/fxcrt/fx_basic_wstring_unittest.cpp", 1475 "core/fxcrt/fx_basic_wstring_unittest.cpp",
1474 "core/fxcrt/fx_bidi_unittest.cpp", 1476 "core/fxcrt/fx_bidi_unittest.cpp",
1475 "core/fxcrt/fx_extension_unittest.cpp", 1477 "core/fxcrt/fx_extension_unittest.cpp",
1476 "core/fxcrt/fx_system_unittest.cpp", 1478 "core/fxcrt/fx_system_unittest.cpp",
1477 "fpdfsdk/fpdfdoc_unittest.cpp", 1479 "fpdfsdk/fpdfdoc_unittest.cpp",
1478 ] 1480 ]
1479 deps = [ 1481 deps = [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1534 "//v8:v8_libplatform", 1536 "//v8:v8_libplatform",
1535 ] 1537 ]
1536 include_dirs += [ 1538 include_dirs += [
1537 "//v8", 1539 "//v8",
1538 "//v8/include", 1540 "//v8/include",
1539 ] 1541 ]
1540 configs += [ "//v8:external_startup_data" ] 1542 configs += [ "//v8:external_startup_data" ]
1541 } 1543 }
1542 configs += [ ":pdfium_config" ] 1544 configs += [ ":pdfium_config" ]
1543 } 1545 }
OLDNEW
« no previous file with comments | « no previous file | core/fxcrt/cfx_retain_ptr_unittest.cpp » ('j') | core/include/fxcrt/cfx_retain_ptr.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698