| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 "core/src/fxge/ge/fx_ge_text.cpp", | 574 "core/src/fxge/ge/fx_ge_text.cpp", |
| 575 "core/src/fxge/ge/fx_text_int.h", | 575 "core/src/fxge/ge/fx_text_int.h", |
| 576 ] | 576 ] |
| 577 | 577 |
| 578 configs += [ | 578 configs += [ |
| 579 ":fxge_warnings", | 579 ":fxge_warnings", |
| 580 ":pdfium_config", | 580 ":pdfium_config", |
| 581 ] | 581 ] |
| 582 | 582 |
| 583 if (pdf_use_skia) { | 583 if (pdf_use_skia) { |
| 584 sources = [ | 584 sources += [ |
| 585 "core/src/fxge/skia/fx_skia_device.cpp", | 585 "core/src/fxge/skia/fx_skia_device.cpp", |
| 586 ] | 586 ] |
| 587 deps = [ | 587 deps += [ |
| 588 "//skia", | 588 "//skia", |
| 589 ] | 589 ] |
| 590 } | 590 } |
| 591 | 591 |
| 592 if (is_win) { | 592 if (is_win) { |
| 593 sources += [ | 593 sources += [ |
| 594 "core/src/fxge/win32/dwrite_int.h", | 594 "core/src/fxge/win32/dwrite_int.h", |
| 595 "core/src/fxge/win32/fx_win32_device.cpp", | 595 "core/src/fxge/win32/fx_win32_device.cpp", |
| 596 "core/src/fxge/win32/fx_win32_dib.cpp", | 596 "core/src/fxge/win32/fx_win32_dib.cpp", |
| 597 "core/src/fxge/win32/fx_win32_dwrite.cpp", | 597 "core/src/fxge/win32/fx_win32_dwrite.cpp", |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1497 "//v8:v8_libplatform", | 1497 "//v8:v8_libplatform", |
| 1498 ] | 1498 ] |
| 1499 include_dirs += [ | 1499 include_dirs += [ |
| 1500 "//v8", | 1500 "//v8", |
| 1501 "//v8/include", | 1501 "//v8/include", |
| 1502 ] | 1502 ] |
| 1503 configs += [ "//v8:external_startup_data" ] | 1503 configs += [ "//v8:external_startup_data" ] |
| 1504 } | 1504 } |
| 1505 configs += [ ":pdfium_config" ] | 1505 configs += [ ":pdfium_config" ] |
| 1506 } | 1506 } |
| OLD | NEW |