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

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: Saner template. 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') | core/fxcrt/cfx_string_c_template.h » ('J')
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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 if (is_clang) { 584 if (is_clang) {
585 cflags = [ 585 cflags = [
586 # http://code.google.com/p/pdfium/issues/detail?id=188 586 # http://code.google.com/p/pdfium/issues/detail?id=188
587 "-Wno-switch", 587 "-Wno-switch",
588 ] 588 ]
589 } 589 }
590 } 590 }
591 591
592 static_library("fxcrt") { 592 static_library("fxcrt") {
593 sources = [ 593 sources = [
594 "core/fxcrt/cfx_string_c_template.h",
594 "core/fxcrt/cfx_string_data_template.h", 595 "core/fxcrt/cfx_string_data_template.h",
595 "core/fxcrt/extension.h", 596 "core/fxcrt/extension.h",
596 "core/fxcrt/fx_basic_array.cpp", 597 "core/fxcrt/fx_basic_array.cpp",
597 "core/fxcrt/fx_basic_bstring.cpp", 598 "core/fxcrt/fx_basic_bstring.cpp",
598 "core/fxcrt/fx_basic_buffer.cpp", 599 "core/fxcrt/fx_basic_buffer.cpp",
599 "core/fxcrt/fx_basic_coords.cpp", 600 "core/fxcrt/fx_basic_coords.cpp",
600 "core/fxcrt/fx_basic_gcc.cpp", 601 "core/fxcrt/fx_basic_gcc.cpp",
601 "core/fxcrt/fx_basic_list.cpp", 602 "core/fxcrt/fx_basic_list.cpp",
602 "core/fxcrt/fx_basic_memmgr.cpp", 603 "core/fxcrt/fx_basic_memmgr.cpp",
603 "core/fxcrt/fx_basic_plex.cpp", 604 "core/fxcrt/fx_basic_plex.cpp",
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after
1693 } 1694 }
1694 1695
1695 if (pdf_is_standalone) { 1696 if (pdf_is_standalone) {
1696 source_set("samples") { 1697 source_set("samples") {
1697 testonly = true 1698 testonly = true
1698 deps = [ 1699 deps = [
1699 "//samples", 1700 "//samples",
1700 ] 1701 ]
1701 } 1702 }
1702 } 1703 }
OLDNEW
« no previous file with comments | « no previous file | core/fxcrt/cfx_string_c_template.h » ('j') | core/fxcrt/cfx_string_c_template.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698