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

Side by Side Diff: BUILD.gn

Issue 2426673002: Rename CFX_CountRef to CFX_SharedCopyOnWrite (Closed)
Patch Set: fix filenames 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/page/cpdf_clippath.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 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 if (is_clang) { 674 if (is_clang) {
675 cflags = [ 675 cflags = [
676 # http://code.google.com/p/pdfium/issues/detail?id=188 676 # http://code.google.com/p/pdfium/issues/detail?id=188
677 "-Wno-switch", 677 "-Wno-switch",
678 ] 678 ]
679 } 679 }
680 } 680 }
681 681
682 static_library("fxcrt") { 682 static_library("fxcrt") {
683 sources = [ 683 sources = [
684 "core/fxcrt/cfx_count_ref.h",
685 "core/fxcrt/cfx_observable.h", 684 "core/fxcrt/cfx_observable.h",
686 "core/fxcrt/cfx_retain_ptr.h", 685 "core/fxcrt/cfx_retain_ptr.h",
686 "core/fxcrt/cfx_shared_copy_on_write.h",
687 "core/fxcrt/cfx_string_c_template.h", 687 "core/fxcrt/cfx_string_c_template.h",
688 "core/fxcrt/cfx_string_data_template.h", 688 "core/fxcrt/cfx_string_data_template.h",
689 "core/fxcrt/cfx_string_pool_template.h", 689 "core/fxcrt/cfx_string_pool_template.h",
690 "core/fxcrt/cfx_weak_ptr.h", 690 "core/fxcrt/cfx_weak_ptr.h",
691 "core/fxcrt/extension.h", 691 "core/fxcrt/extension.h",
692 "core/fxcrt/fx_basic.h", 692 "core/fxcrt/fx_basic.h",
693 "core/fxcrt/fx_basic_array.cpp", 693 "core/fxcrt/fx_basic_array.cpp",
694 "core/fxcrt/fx_basic_bstring.cpp", 694 "core/fxcrt/fx_basic_bstring.cpp",
695 "core/fxcrt/fx_basic_buffer.cpp", 695 "core/fxcrt/fx_basic_buffer.cpp",
696 "core/fxcrt/fx_basic_coords.cpp", 696 "core/fxcrt/fx_basic_coords.cpp",
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
1645 "core/fpdfapi/parser/cpdf_object_unittest.cpp", 1645 "core/fpdfapi/parser/cpdf_object_unittest.cpp",
1646 "core/fpdfapi/parser/cpdf_parser_unittest.cpp", 1646 "core/fpdfapi/parser/cpdf_parser_unittest.cpp",
1647 "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp", 1647 "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp",
1648 "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp", 1648 "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp",
1649 "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp", 1649 "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp",
1650 "core/fpdfdoc/cpdf_filespec_unittest.cpp", 1650 "core/fpdfdoc/cpdf_filespec_unittest.cpp",
1651 "core/fpdfdoc/cpdf_formfield_unittest.cpp", 1651 "core/fpdfdoc/cpdf_formfield_unittest.cpp",
1652 "core/fpdftext/fpdf_text_int_unittest.cpp", 1652 "core/fpdftext/fpdf_text_int_unittest.cpp",
1653 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", 1653 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp",
1654 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", 1654 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp",
1655 "core/fxcrt/cfx_count_ref_unittest.cpp",
1656 "core/fxcrt/cfx_observable_unittest.cpp", 1655 "core/fxcrt/cfx_observable_unittest.cpp",
1657 "core/fxcrt/cfx_retain_ptr_unittest.cpp", 1656 "core/fxcrt/cfx_retain_ptr_unittest.cpp",
1657 "core/fxcrt/cfx_shared_copy_on_write_unittest.cpp",
1658 "core/fxcrt/cfx_string_pool_template_unittest.cpp", 1658 "core/fxcrt/cfx_string_pool_template_unittest.cpp",
1659 "core/fxcrt/cfx_weak_ptr_unittest.cpp", 1659 "core/fxcrt/cfx_weak_ptr_unittest.cpp",
1660 "core/fxcrt/fx_basic_bstring_unittest.cpp", 1660 "core/fxcrt/fx_basic_bstring_unittest.cpp",
1661 "core/fxcrt/fx_basic_gcc_unittest.cpp", 1661 "core/fxcrt/fx_basic_gcc_unittest.cpp",
1662 "core/fxcrt/fx_basic_memmgr_unittest.cpp", 1662 "core/fxcrt/fx_basic_memmgr_unittest.cpp",
1663 "core/fxcrt/fx_basic_util_unittest.cpp", 1663 "core/fxcrt/fx_basic_util_unittest.cpp",
1664 "core/fxcrt/fx_basic_wstring_unittest.cpp", 1664 "core/fxcrt/fx_basic_wstring_unittest.cpp",
1665 "core/fxcrt/fx_bidi_unittest.cpp", 1665 "core/fxcrt/fx_bidi_unittest.cpp",
1666 "core/fxcrt/fx_extension_unittest.cpp", 1666 "core/fxcrt/fx_extension_unittest.cpp",
1667 "core/fxcrt/fx_system_unittest.cpp", 1667 "core/fxcrt/fx_system_unittest.cpp",
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1757 } 1757 }
1758 1758
1759 if (pdf_is_standalone) { 1759 if (pdf_is_standalone) {
1760 source_set("samples") { 1760 source_set("samples") {
1761 testonly = true 1761 testonly = true
1762 deps = [ 1762 deps = [
1763 "//samples", 1763 "//samples",
1764 ] 1764 ]
1765 } 1765 }
1766 } 1766 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfapi/page/cpdf_clippath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698