| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 pdf_engine = 0 # 0 PDFium | 5 pdf_engine = 0 # 0 PDFium |
| 6 | 6 |
| 7 static_library("pdf") { | 7 static_library("pdf") { |
| 8 sources = [ | 8 sources = [ |
| 9 "button.cc", |
| 9 "button.h", | 10 "button.h", |
| 10 "button.cc", | 11 "chunk_stream.cc", |
| 11 "chunk_stream.h", | 12 "chunk_stream.h", |
| 12 "chunk_stream.cc", | 13 "control.cc", |
| 13 "control.h", | 14 "control.h", |
| 14 "control.cc", | 15 "document_loader.cc", |
| 15 "document_loader.h", | 16 "document_loader.h", |
| 16 "document_loader.cc", | |
| 17 "draw_utils.cc", | 17 "draw_utils.cc", |
| 18 "draw_utils.h", | 18 "draw_utils.h", |
| 19 "fading_control.cc", | 19 "fading_control.cc", |
| 20 "fading_control.h", | 20 "fading_control.h", |
| 21 "fading_controls.cc", | 21 "fading_controls.cc", |
| 22 "fading_controls.h", | 22 "fading_controls.h", |
| 23 "instance.cc", | 23 "instance.cc", |
| 24 "instance.h", | 24 "instance.h", |
| 25 "number_image_generator.cc", | 25 "number_image_generator.cc", |
| 26 "number_image_generator.h", | 26 "number_image_generator.h", |
| 27 "out_of_process_instance.cc", | 27 "out_of_process_instance.cc", |
| 28 "out_of_process_instance.h", | 28 "out_of_process_instance.h", |
| 29 "page_indicator.cc", | 29 "page_indicator.cc", |
| 30 "page_indicator.h", | 30 "page_indicator.h", |
| 31 "paint_aggregator.cc", | 31 "paint_aggregator.cc", |
| 32 "paint_aggregator.h", | 32 "paint_aggregator.h", |
| 33 "paint_manager.cc", | 33 "paint_manager.cc", |
| 34 "paint_manager.h", | 34 "paint_manager.h", |
| 35 "pdf.cc", | 35 "pdf.cc", |
| 36 "pdf.h", | 36 "pdf.h", |
| 37 "progress_control.cc", | |
| 38 "progress_control.h", | |
| 39 "pdf_engine.h", | 37 "pdf_engine.h", |
| 40 "preview_mode_client.cc", | 38 "preview_mode_client.cc", |
| 41 "preview_mode_client.h", | 39 "preview_mode_client.h", |
| 40 "progress_control.cc", |
| 41 "progress_control.h", |
| 42 "resource.h", | 42 "resource.h", |
| 43 "resource_consts.h", | 43 "resource_consts.h", |
| 44 "thumbnail_control.cc", | 44 "thumbnail_control.cc", |
| 45 "thumbnail_control.h", | 45 "thumbnail_control.h", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 50 | 50 |
| 51 if (pdf_engine == 0) { | 51 if (pdf_engine == 0) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 "//base", | 70 "//base", |
| 71 "//components/ui/zoom:ui_zoom", | 71 "//components/ui/zoom:ui_zoom", |
| 72 "//content/public/common", | 72 "//content/public/common", |
| 73 "//net", | 73 "//net", |
| 74 "//ppapi/cpp/private:internal_module", | 74 "//ppapi/cpp/private:internal_module", |
| 75 "//third_party/pdfium", | 75 "//third_party/pdfium", |
| 76 ] | 76 ] |
| 77 } | 77 } |
| OLD | NEW |