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

Side by Side Diff: BUILD.gn

Issue 1874773002: Templatize CFX_{Byte,Wide}StringC (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Remove one <type_traits> include. Created 4 years, 7 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/fxcrt/cfx_string_c_template.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_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 if (is_clang) { 586 if (is_clang) {
587 cflags = [ 587 cflags = [
588 # http://code.google.com/p/pdfium/issues/detail?id=188 588 # http://code.google.com/p/pdfium/issues/detail?id=188
589 "-Wno-switch", 589 "-Wno-switch",
590 ] 590 ]
591 } 591 }
592 } 592 }
593 593
594 static_library("fxcrt") { 594 static_library("fxcrt") {
595 sources = [ 595 sources = [
596 "core/fxcrt/cfx_string_c_template.h",
596 "core/fxcrt/cfx_string_data_template.h", 597 "core/fxcrt/cfx_string_data_template.h",
597 "core/fxcrt/extension.h", 598 "core/fxcrt/extension.h",
598 "core/fxcrt/fx_basic_array.cpp", 599 "core/fxcrt/fx_basic_array.cpp",
599 "core/fxcrt/fx_basic_bstring.cpp", 600 "core/fxcrt/fx_basic_bstring.cpp",
600 "core/fxcrt/fx_basic_buffer.cpp", 601 "core/fxcrt/fx_basic_buffer.cpp",
601 "core/fxcrt/fx_basic_coords.cpp", 602 "core/fxcrt/fx_basic_coords.cpp",
602 "core/fxcrt/fx_basic_gcc.cpp", 603 "core/fxcrt/fx_basic_gcc.cpp",
603 "core/fxcrt/fx_basic_list.cpp", 604 "core/fxcrt/fx_basic_list.cpp",
604 "core/fxcrt/fx_basic_memmgr.cpp", 605 "core/fxcrt/fx_basic_memmgr.cpp",
605 "core/fxcrt/fx_basic_plex.cpp", 606 "core/fxcrt/fx_basic_plex.cpp",
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after
1695 } 1696 }
1696 1697
1697 if (pdf_is_standalone) { 1698 if (pdf_is_standalone) {
1698 source_set("samples") { 1699 source_set("samples") {
1699 testonly = true 1700 testonly = true
1700 deps = [ 1701 deps = [
1701 "//samples", 1702 "//samples",
1702 ] 1703 ]
1703 } 1704 }
1704 } 1705 }
OLDNEW
« no previous file with comments | « no previous file | core/fxcrt/cfx_string_c_template.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698