| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "fpdfsdk/include/fpdf_transformpage.h", | 88 "fpdfsdk/include/fpdf_transformpage.h", |
| 89 "fpdfsdk/src/fpdf_transformpage.cpp", | 89 "fpdfsdk/src/fpdf_transformpage.cpp", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 libs = [] | 92 libs = [] |
| 93 configs -= [ "//build/config/compiler:chromium_code" ] | 93 configs -= [ "//build/config/compiler:chromium_code" ] |
| 94 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 94 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 95 | 95 |
| 96 deps = [ | 96 deps = [ |
| 97 "third_party:bigint", | 97 "third_party:bigint", |
| 98 "third_party:safemath", | 98 "third_party:pdfium_base", |
| 99 ":fdrm", | 99 ":fdrm", |
| 100 ":formfiller", | 100 ":formfiller", |
| 101 ":fpdfapi", | 101 ":fpdfapi", |
| 102 ":fpdfdoc", | 102 ":fpdfdoc", |
| 103 ":fpdftext", | 103 ":fpdftext", |
| 104 ":fxcodec", | 104 ":fxcodec", |
| 105 ":fxcrt", | 105 ":fxcrt", |
| 106 ":fxedit", | 106 ":fxedit", |
| 107 ":fxge", | 107 ":fxge", |
| 108 ":javascript", | 108 ":javascript", |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 "testing/fx_string_testhelpers.h", | 831 "testing/fx_string_testhelpers.h", |
| 832 ] | 832 ] |
| 833 deps = [ | 833 deps = [ |
| 834 "//testing/gtest", | 834 "//testing/gtest", |
| 835 ":pdfium" | 835 ":pdfium" |
| 836 ] | 836 ] |
| 837 include_dirs = [ "." ] | 837 include_dirs = [ "." ] |
| 838 configs -= [ "//build/config/compiler:chromium_code" ] | 838 configs -= [ "//build/config/compiler:chromium_code" ] |
| 839 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 839 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 840 } | 840 } |
| OLD | NEW |