summaryrefslogtreecommitdiff
path: root/xfa_test/pdf/BUILD.gn
diff options
context:
space:
mode:
authorBo Xu <bo_xu@foxitsoftware.com>2014-11-03 18:38:41 -0800
committerBo Xu <bo_xu@foxitsoftware.com>2014-11-03 18:38:41 -0800
commit9d9f6c347f56b07ec519c93097066a7eb541263d (patch)
tree040b7a6aa6618e31fc11500d658b56567fbc89b7 /xfa_test/pdf/BUILD.gn
parent062a0798d91646959e8092a129fbe706534ca387 (diff)
downloadpdfium-9d9f6c347f56b07ec519c93097066a7eb541263d.tar.xz
Remove xfa_test for delivery
Diffstat (limited to 'xfa_test/pdf/BUILD.gn')
-rw-r--r--xfa_test/pdf/BUILD.gn99
1 files changed, 0 insertions, 99 deletions
diff --git a/xfa_test/pdf/BUILD.gn b/xfa_test/pdf/BUILD.gn
deleted file mode 100644
index 5e1f165b1c..0000000000
--- a/xfa_test/pdf/BUILD.gn
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-pdf_engine = 0 # 0 PDFium
-
-# TODO(GYP) need support for loadable modules
-shared_library("pdf") {
- sources = [
- "button.h",
- "button.cc",
- "chunk_stream.h",
- "chunk_stream.cc",
- "control.h",
- "control.cc",
- "document_loader.h",
- "document_loader.cc",
- "draw_utils.cc",
- "draw_utils.h",
- "fading_control.cc",
- "fading_control.h",
- "fading_controls.cc",
- "fading_controls.h",
- "instance.cc",
- "instance.h",
- "number_image_generator.cc",
- "number_image_generator.h",
- "out_of_process_instance.cc",
- "out_of_process_instance.h",
- "page_indicator.cc",
- "page_indicator.h",
- "paint_aggregator.cc",
- "paint_aggregator.h",
- "paint_manager.cc",
- "paint_manager.h",
- "pdf.cc",
- "pdf.h",
- "pdf.rc",
- "progress_control.cc",
- "progress_control.h",
- "pdf_engine.h",
- "preview_mode_client.cc",
- "preview_mode_client.h",
- "resource.h",
- "resource_consts.h",
- "thumbnail_control.cc",
- "thumbnail_control.h",
- "../chrome/browser/chrome_page_zoom_constants.cc",
- "../content/common/page_zoom.cc",
- ]
-
- if (pdf_engine == 0) {
- sources += [
- "pdfium/pdfium_assert_matching_enums.cc",
- "pdfium/pdfium_engine.cc",
- "pdfium/pdfium_engine.h",
- "pdfium/pdfium_mem_buffer_file_read.cc",
- "pdfium/pdfium_mem_buffer_file_read.h",
- "pdfium/pdfium_mem_buffer_file_write.cc",
- "pdfium/pdfium_mem_buffer_file_write.h",
- "pdfium/pdfium_page.cc",
- "pdfium/pdfium_page.h",
- "pdfium/pdfium_range.cc",
- "pdfium/pdfium_range.h",
- ]
- }
-
- if (is_win) {
- defines = [ "COMPILE_CONTENT_STATICALLY" ]
- cflags = [ "/wd4267" ] # TODO(jschuh) size_t to int truncations.
- }
-
- if (is_mac) {
- # TODO(GYP)
- #'mac_bundle': 1,
- #'product_name': 'PDF',
- #'product_extension': 'plugin',
- ## Strip the shipping binary of symbols so "Foxit" doesn't appear in
- ## the binary. Symbols are stored in a separate .dSYM.
- #'variables': {
- # 'mac_real_dsym': 1,
- #},
- #'sources+': [
- # 'Info.plist'
- #]
- #'xcode_settings': {
- # 'INFOPLIST_FILE': 'Info.plist',
- #},
- }
-
- deps = [
- "//base",
- "//net",
- "//ppapi:ppapi_cpp",
- "//third_party/pdfium",
- ]
-}
-
-# TODO(GYP) pdf_linux_symbols target.