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

Side by Side Diff: pdfium.gyp

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
OLDNEW
1 # Copyright 2015 PDFium Authors. All rights reserved. 1 # Copyright 2015 PDFium 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 { 5 {
6 'variables': { 6 'variables': {
7 # TODO(thakis): Enable this, pdfium:29 7 # TODO(thakis): Enable this, pdfium:29
8 #'chromium_code': 1, 8 #'chromium_code': 1,
9 9
10 'variables': { 10 'variables': {
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 # core/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int 606 # core/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int
607 # conversion to check that an address is 16-bit aligned (benign). 607 # conversion to check that an address is 16-bit aligned (benign).
608 'cflags_c': [ '-Wno-pointer-to-int-cast' ], 608 'cflags_c': [ '-Wno-pointer-to-int-cast' ],
609 }], 609 }],
610 ], 610 ],
611 }, 611 },
612 { 612 {
613 'target_name': 'fxcrt', 613 'target_name': 'fxcrt',
614 'type': 'static_library', 614 'type': 'static_library',
615 'sources': [ 615 'sources': [
616 'core/fxcrt/cfx_string_c_template.h',
616 'core/fxcrt/cfx_string_data_template.h', 617 'core/fxcrt/cfx_string_data_template.h',
617 'core/fxcrt/extension.h', 618 'core/fxcrt/extension.h',
618 'core/fxcrt/fx_basic_array.cpp', 619 'core/fxcrt/fx_basic_array.cpp',
619 'core/fxcrt/fx_basic_bstring.cpp', 620 'core/fxcrt/fx_basic_bstring.cpp',
620 'core/fxcrt/fx_basic_buffer.cpp', 621 'core/fxcrt/fx_basic_buffer.cpp',
621 'core/fxcrt/fx_basic_coords.cpp', 622 'core/fxcrt/fx_basic_coords.cpp',
622 'core/fxcrt/fx_basic_gcc.cpp', 623 'core/fxcrt/fx_basic_gcc.cpp',
623 'core/fxcrt/fx_basic_list.cpp', 624 'core/fxcrt/fx_basic_list.cpp',
624 'core/fxcrt/fx_basic_memmgr.cpp', 625 'core/fxcrt/fx_basic_memmgr.cpp',
625 'core/fxcrt/fx_basic_plex.cpp', 626 'core/fxcrt/fx_basic_plex.cpp',
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h', 1072 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h',
1072 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h', 1073 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h',
1073 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h', 1074 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h',
1074 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h', 1075 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h',
1075 ], 1076 ],
1076 }, 1077 },
1077 ] 1078 ]
1078 }], 1079 }],
1079 ] 1080 ]
1080 } 1081 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698