| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 pdf_use_skia = false | 7 pdf_use_skia = false |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # On Android there's no system FreeType. On Windows and Mac, only a few | 10 # On Android there's no system FreeType. On Windows and Mac, only a few |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 545 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 546 } | 546 } |
| 547 | 547 |
| 548 static_library("fxcrt") { | 548 static_library("fxcrt") { |
| 549 sources = [ | 549 sources = [ |
| 550 "core/include/fxcrt/fx_arb.h", | 550 "core/include/fxcrt/fx_arb.h", |
| 551 "core/include/fxcrt/fx_basic.h", | 551 "core/include/fxcrt/fx_basic.h", |
| 552 "core/include/fxcrt/fx_coordinates.h", | 552 "core/include/fxcrt/fx_coordinates.h", |
| 553 "core/include/fxcrt/fx_ext.h", | 553 "core/include/fxcrt/fx_ext.h", |
| 554 "core/include/fxcrt/fx_memory.h", | 554 "core/include/fxcrt/fx_memory.h", |
| 555 "core/include/fxcrt/fx_safe_types.h", |
| 555 "core/include/fxcrt/fx_stream.h", | 556 "core/include/fxcrt/fx_stream.h", |
| 556 "core/include/fxcrt/fx_string.h", | 557 "core/include/fxcrt/fx_string.h", |
| 557 "core/include/fxcrt/fx_system.h", | 558 "core/include/fxcrt/fx_system.h", |
| 558 "core/include/fxcrt/fx_ucd.h", | 559 "core/include/fxcrt/fx_ucd.h", |
| 559 "core/include/fxcrt/fx_xml.h", | 560 "core/include/fxcrt/fx_xml.h", |
| 560 "core/src/fxcrt/extension.h", | 561 "core/src/fxcrt/extension.h", |
| 561 "core/src/fxcrt/fx_safe_types.h", | |
| 562 "core/src/fxcrt/fxcrt_platforms.cpp", | 562 "core/src/fxcrt/fxcrt_platforms.cpp", |
| 563 "core/src/fxcrt/fxcrt_platforms.h", | 563 "core/src/fxcrt/fxcrt_platforms.h", |
| 564 "core/src/fxcrt/fxcrt_posix.cpp", | 564 "core/src/fxcrt/fxcrt_posix.cpp", |
| 565 "core/src/fxcrt/fxcrt_posix.h", | 565 "core/src/fxcrt/fxcrt_posix.h", |
| 566 "core/src/fxcrt/fxcrt_windows.cpp", | 566 "core/src/fxcrt/fxcrt_windows.cpp", |
| 567 "core/src/fxcrt/fxcrt_windows.h", | 567 "core/src/fxcrt/fxcrt_windows.h", |
| 568 "core/src/fxcrt/fx_arabic.cpp", | 568 "core/src/fxcrt/fx_arabic.cpp", |
| 569 "core/src/fxcrt/fx_arabic.h", | 569 "core/src/fxcrt/fx_arabic.h", |
| 570 "core/src/fxcrt/fx_basic_array.cpp", | 570 "core/src/fxcrt/fx_basic_array.cpp", |
| 571 "core/src/fxcrt/fx_basic_bstring.cpp", | 571 "core/src/fxcrt/fx_basic_bstring.cpp", |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1599 ":pdfium" | 1599 ":pdfium" |
| 1600 ] | 1600 ] |
| 1601 include_dirs = [ | 1601 include_dirs = [ |
| 1602 ".", | 1602 ".", |
| 1603 "//v8", | 1603 "//v8", |
| 1604 "//v8/include", | 1604 "//v8/include", |
| 1605 ] | 1605 ] |
| 1606 configs -= [ "//build/config/compiler:chromium_code" ] | 1606 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1607 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1607 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1608 } | 1608 } |
| OLD | NEW |