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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "core/src/fpdfdoc/doc_basic.cpp", | 168 "core/src/fpdfdoc/doc_basic.cpp", |
169 "core/src/fpdfdoc/doc_bookmark.cpp", | 169 "core/src/fpdfdoc/doc_bookmark.cpp", |
170 "core/src/fpdfdoc/doc_form.cpp", | 170 "core/src/fpdfdoc/doc_form.cpp", |
171 "core/src/fpdfdoc/doc_formcontrol.cpp", | 171 "core/src/fpdfdoc/doc_formcontrol.cpp", |
172 "core/src/fpdfdoc/doc_formfield.cpp", | 172 "core/src/fpdfdoc/doc_formfield.cpp", |
173 "core/src/fpdfdoc/doc_link.cpp", | 173 "core/src/fpdfdoc/doc_link.cpp", |
174 "core/src/fpdfdoc/doc_metadata.cpp", | 174 "core/src/fpdfdoc/doc_metadata.cpp", |
175 "core/src/fpdfdoc/doc_ocg.cpp", | 175 "core/src/fpdfdoc/doc_ocg.cpp", |
176 "core/src/fpdfdoc/doc_tagged.cpp", | 176 "core/src/fpdfdoc/doc_tagged.cpp", |
177 "core/src/fpdfdoc/doc_utils.cpp", | 177 "core/src/fpdfdoc/doc_utils.cpp", |
| 178 "core/src/fpdfdoc/doc_utils.h", |
178 "core/src/fpdfdoc/doc_viewerPreferences.cpp", | 179 "core/src/fpdfdoc/doc_viewerPreferences.cpp", |
179 "core/src/fpdfdoc/doc_vt.cpp", | 180 "core/src/fpdfdoc/doc_vt.cpp", |
180 "core/src/fpdfdoc/doc_vtmodule.cpp", | 181 "core/src/fpdfdoc/doc_vtmodule.cpp", |
181 "core/src/fpdfdoc/pdf_vt.h", | 182 "core/src/fpdfdoc/pdf_vt.h", |
182 "core/src/fpdfdoc/tagged_int.h", | 183 "core/src/fpdfdoc/tagged_int.h", |
183 ] | 184 ] |
184 configs -= [ "//build/config/compiler:chromium_code" ] | 185 configs -= [ "//build/config/compiler:chromium_code" ] |
185 configs += [ | 186 configs += [ |
186 ":pdfium_config", | 187 ":pdfium_config", |
187 "//build/config/compiler:no_chromium_code", | 188 "//build/config/compiler:no_chromium_code", |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 "//testing/gtest", | 888 "//testing/gtest", |
888 ":pdfium", | 889 ":pdfium", |
889 ] | 890 ] |
890 include_dirs = [ "." ] | 891 include_dirs = [ "." ] |
891 configs -= [ "//build/config/compiler:chromium_code" ] | 892 configs -= [ "//build/config/compiler:chromium_code" ] |
892 configs += [ | 893 configs += [ |
893 ":pdfium_config", | 894 ":pdfium_config", |
894 "//build/config/compiler:no_chromium_code", | 895 "//build/config/compiler:no_chromium_code", |
895 ] | 896 ] |
896 } | 897 } |
OLD | NEW |