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