| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "core/src/fpdfdoc/doc_basic.cpp", | 156 "core/src/fpdfdoc/doc_basic.cpp", |
| 157 "core/src/fpdfdoc/doc_bookmark.cpp", | 157 "core/src/fpdfdoc/doc_bookmark.cpp", |
| 158 "core/src/fpdfdoc/doc_form.cpp", | 158 "core/src/fpdfdoc/doc_form.cpp", |
| 159 "core/src/fpdfdoc/doc_formcontrol.cpp", | 159 "core/src/fpdfdoc/doc_formcontrol.cpp", |
| 160 "core/src/fpdfdoc/doc_formfield.cpp", | 160 "core/src/fpdfdoc/doc_formfield.cpp", |
| 161 "core/src/fpdfdoc/doc_link.cpp", | 161 "core/src/fpdfdoc/doc_link.cpp", |
| 162 "core/src/fpdfdoc/doc_metadata.cpp", | 162 "core/src/fpdfdoc/doc_metadata.cpp", |
| 163 "core/src/fpdfdoc/doc_ocg.cpp", | 163 "core/src/fpdfdoc/doc_ocg.cpp", |
| 164 "core/src/fpdfdoc/doc_tagged.cpp", | 164 "core/src/fpdfdoc/doc_tagged.cpp", |
| 165 "core/src/fpdfdoc/doc_utils.cpp", | 165 "core/src/fpdfdoc/doc_utils.cpp", |
| 166 "core/src/fpdfdoc/doc_utils.h", |
| 166 "core/src/fpdfdoc/doc_viewerPreferences.cpp", | 167 "core/src/fpdfdoc/doc_viewerPreferences.cpp", |
| 167 "core/src/fpdfdoc/doc_vt.cpp", | 168 "core/src/fpdfdoc/doc_vt.cpp", |
| 168 "core/src/fpdfdoc/doc_vtmodule.cpp", | 169 "core/src/fpdfdoc/doc_vtmodule.cpp", |
| 169 "core/src/fpdfdoc/pdf_vt.h", | 170 "core/src/fpdfdoc/pdf_vt.h", |
| 170 "core/src/fpdfdoc/tagged_int.h", | 171 "core/src/fpdfdoc/tagged_int.h", |
| 171 ] | 172 ] |
| 172 configs -= [ "//build/config/compiler:chromium_code" ] | 173 configs -= [ "//build/config/compiler:chromium_code" ] |
| 173 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 174 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 174 } | 175 } |
| 175 | 176 |
| (...skipping 1415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1591 ":pdfium" | 1592 ":pdfium" |
| 1592 ] | 1593 ] |
| 1593 include_dirs = [ | 1594 include_dirs = [ |
| 1594 ".", | 1595 ".", |
| 1595 "//v8", | 1596 "//v8", |
| 1596 "//v8/include", | 1597 "//v8/include", |
| 1597 ] | 1598 ] |
| 1598 configs -= [ "//build/config/compiler:chromium_code" ] | 1599 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1599 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1600 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1600 } | 1601 } |
| OLD | NEW |