| 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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 "core/include/fxge/fx_ge_apple.h", | 631 "core/include/fxge/fx_ge_apple.h", |
| 632 "core/include/fxge/fx_ge_win32.h", | 632 "core/include/fxge/fx_ge_win32.h", |
| 633 ] | 633 ] |
| 634 | 634 |
| 635 configs += [ | 635 configs += [ |
| 636 ":fxge_warnings", | 636 ":fxge_warnings", |
| 637 ":pdfium_config", | 637 ":pdfium_config", |
| 638 ] | 638 ] |
| 639 | 639 |
| 640 if (pdf_use_skia) { | 640 if (pdf_use_skia) { |
| 641 sources += [ "core/src/fxge/skia/fx_skia_device.cpp" ] | 641 sources += [ "core/fxge/skia/fx_skia_device.cpp" ] |
| 642 deps += [ "//skia" ] | 642 deps += [ "//skia" ] |
| 643 } | 643 } |
| 644 | 644 |
| 645 if (is_win) { | 645 if (is_win) { |
| 646 sources += [ | 646 sources += [ |
| 647 "core/fxge/win32/dwrite_int.h", | 647 "core/fxge/win32/dwrite_int.h", |
| 648 "core/fxge/win32/fx_win32_device.cpp", | 648 "core/fxge/win32/fx_win32_device.cpp", |
| 649 "core/fxge/win32/fx_win32_dib.cpp", | 649 "core/fxge/win32/fx_win32_dib.cpp", |
| 650 "core/fxge/win32/fx_win32_dwrite.cpp", | 650 "core/fxge/win32/fx_win32_dwrite.cpp", |
| 651 "core/fxge/win32/fx_win32_gdipext.cpp", | 651 "core/fxge/win32/fx_win32_gdipext.cpp", |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1553 "//v8:v8_libplatform", | 1553 "//v8:v8_libplatform", |
| 1554 ] | 1554 ] |
| 1555 include_dirs += [ | 1555 include_dirs += [ |
| 1556 "//v8", | 1556 "//v8", |
| 1557 "//v8/include", | 1557 "//v8/include", |
| 1558 ] | 1558 ] |
| 1559 configs += [ "//v8:external_startup_data" ] | 1559 configs += [ "//v8:external_startup_data" ] |
| 1560 } | 1560 } |
| 1561 configs += [ ":pdfium_config" ] | 1561 configs += [ ":pdfium_config" ] |
| 1562 } | 1562 } |
| OLD | NEW |