| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("pdfium.gni") | 7 import("pdfium.gni") |
| 8 | 8 |
| 9 config("pdfium_config") { | 9 config("pdfium_config") { |
| 10 cflags = [] | 10 cflags = [] |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 "core/fxge/freetype/fx_freetype.cpp", | 701 "core/fxge/freetype/fx_freetype.cpp", |
| 702 "core/fxge/ge/fx_ge.cpp", | 702 "core/fxge/ge/fx_ge.cpp", |
| 703 "core/fxge/ge/fx_ge_device.cpp", | 703 "core/fxge/ge/fx_ge_device.cpp", |
| 704 "core/fxge/ge/fx_ge_font.cpp", | 704 "core/fxge/ge/fx_ge_font.cpp", |
| 705 "core/fxge/ge/fx_ge_fontmap.cpp", | 705 "core/fxge/ge/fx_ge_fontmap.cpp", |
| 706 "core/fxge/ge/fx_ge_linux.cpp", | 706 "core/fxge/ge/fx_ge_linux.cpp", |
| 707 "core/fxge/ge/fx_ge_path.cpp", | 707 "core/fxge/ge/fx_ge_path.cpp", |
| 708 "core/fxge/ge/fx_ge_ps.cpp", | 708 "core/fxge/ge/fx_ge_ps.cpp", |
| 709 "core/fxge/ge/fx_ge_text.cpp", | 709 "core/fxge/ge/fx_ge_text.cpp", |
| 710 "core/fxge/ge/fx_text_int.h", | 710 "core/fxge/ge/fx_text_int.h", |
| 711 "core/fxge/include/fpf.h", | |
| 712 "core/fxge/include/fx_dib.h", | 711 "core/fxge/include/fx_dib.h", |
| 713 "core/fxge/include/fx_font.h", | 712 "core/fxge/include/fx_font.h", |
| 714 "core/fxge/include/fx_freetype.h", | 713 "core/fxge/include/fx_freetype.h", |
| 715 "core/fxge/include/fx_ge.h", | 714 "core/fxge/include/fx_ge.h", |
| 716 "core/fxge/include/fx_ge_apple.h", | 715 "core/fxge/include/fx_ge_apple.h", |
| 717 "core/fxge/include/fx_ge_win32.h", | 716 "core/fxge/include/fx_ge_win32.h", |
| 718 ] | 717 ] |
| 719 | 718 |
| 720 configs += [ | 719 configs += [ |
| 721 ":fxge_warnings", | 720 ":fxge_warnings", |
| (...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1731 "//v8:v8_libplatform", | 1730 "//v8:v8_libplatform", |
| 1732 ] | 1731 ] |
| 1733 include_dirs += [ | 1732 include_dirs += [ |
| 1734 "//v8", | 1733 "//v8", |
| 1735 "//v8/include", | 1734 "//v8/include", |
| 1736 ] | 1735 ] |
| 1737 configs += [ "//v8:external_startup_data" ] | 1736 configs += [ "//v8:external_startup_data" ] |
| 1738 } | 1737 } |
| 1739 configs += [ ":pdfium_config" ] | 1738 configs += [ ":pdfium_config" ] |
| 1740 } | 1739 } |
| OLD | NEW |