| 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 "core/src/fxge/ge/fx_ge_text.cpp", | 588 "core/src/fxge/ge/fx_ge_text.cpp", |
| 589 "core/src/fxge/ge/fx_text_int.h", | 589 "core/src/fxge/ge/fx_text_int.h", |
| 590 ] | 590 ] |
| 591 | 591 |
| 592 configs += [ | 592 configs += [ |
| 593 ":fxge_warnings", | 593 ":fxge_warnings", |
| 594 ":pdfium_config", | 594 ":pdfium_config", |
| 595 ] | 595 ] |
| 596 | 596 |
| 597 if (pdf_use_skia) { | 597 if (pdf_use_skia) { |
| 598 sources = [ | 598 sources += [ "core/src/fxge/skia/fx_skia_device.cpp" ] |
| 599 "core/src/fxge/skia/fx_skia_device.cpp", | 599 deps += [ "//skia" ] |
| 600 ] | |
| 601 deps = [ | |
| 602 "//skia", | |
| 603 ] | |
| 604 } | 600 } |
| 605 | 601 |
| 606 if (is_win) { | 602 if (is_win) { |
| 607 sources += [ | 603 sources += [ |
| 608 "core/src/fxge/win32/dwrite_int.h", | 604 "core/src/fxge/win32/dwrite_int.h", |
| 609 "core/src/fxge/win32/fx_win32_device.cpp", | 605 "core/src/fxge/win32/fx_win32_device.cpp", |
| 610 "core/src/fxge/win32/fx_win32_dib.cpp", | 606 "core/src/fxge/win32/fx_win32_dib.cpp", |
| 611 "core/src/fxge/win32/fx_win32_dwrite.cpp", | 607 "core/src/fxge/win32/fx_win32_dwrite.cpp", |
| 612 "core/src/fxge/win32/fx_win32_gdipext.cpp", | 608 "core/src/fxge/win32/fx_win32_gdipext.cpp", |
| 613 "core/src/fxge/win32/fx_win32_print.cpp", | 609 "core/src/fxge/win32/fx_win32_print.cpp", |
| (...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 "//v8:v8_libplatform", | 1499 "//v8:v8_libplatform", |
| 1504 ] | 1500 ] |
| 1505 include_dirs += [ | 1501 include_dirs += [ |
| 1506 "//v8", | 1502 "//v8", |
| 1507 "//v8/include", | 1503 "//v8/include", |
| 1508 ] | 1504 ] |
| 1509 configs += [ "//v8:external_startup_data" ] | 1505 configs += [ "//v8:external_startup_data" ] |
| 1510 } | 1506 } |
| 1511 configs += [ ":pdfium_config" ] | 1507 configs += [ ":pdfium_config" ] |
| 1512 } | 1508 } |
| OLD | NEW |