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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 "core/src/fxge/ge/fx_text_int.h", | 569 "core/src/fxge/ge/fx_text_int.h", |
570 ] | 570 ] |
571 | 571 |
572 configs += [ | 572 configs += [ |
573 ":fxge_warnings", | 573 ":fxge_warnings", |
574 ":pdfium_config", | 574 ":pdfium_config", |
575 ] | 575 ] |
576 | 576 |
577 if (pdf_use_skia) { | 577 if (pdf_use_skia) { |
578 sources = [ | 578 sources = [ |
579 "core/src/fxge/skia/fx_skia_blitter_new.cpp", | |
580 "core/src/fxge/skia/fx_skia_device.cpp", | 579 "core/src/fxge/skia/fx_skia_device.cpp", |
581 ] | 580 ] |
582 include_dirs = [ | |
583 "//third_party/skia/include/config", | |
584 "//third_party/skia/include/core", | |
585 "//third_party/skia/include/effects", | |
586 "//third_party/skia/include/images", | |
587 "//third_party/skia/include/lazy", | |
588 "//third_party/skia/include/pathops", | |
589 "//third_party/skia/include/utils", | |
590 "//third_party/skia/src/core", | |
591 ] | |
592 deps = [ | 581 deps = [ |
593 "//skia", | 582 "//skia", |
594 ] | 583 ] |
595 } | 584 } |
596 | 585 |
597 if (is_win) { | 586 if (is_win) { |
598 sources += [ | 587 sources += [ |
599 "core/src/fxge/win32/dwrite_int.h", | 588 "core/src/fxge/win32/dwrite_int.h", |
600 "core/src/fxge/win32/fx_win32_device.cpp", | 589 "core/src/fxge/win32/fx_win32_device.cpp", |
601 "core/src/fxge/win32/fx_win32_dib.cpp", | 590 "core/src/fxge/win32/fx_win32_dib.cpp", |
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1500 "//v8:v8_libplatform", | 1489 "//v8:v8_libplatform", |
1501 ] | 1490 ] |
1502 include_dirs += [ | 1491 include_dirs += [ |
1503 "//v8", | 1492 "//v8", |
1504 "//v8/include", | 1493 "//v8/include", |
1505 ] | 1494 ] |
1506 configs += [ "//v8:external_startup_data" ] | 1495 configs += [ "//v8:external_startup_data" ] |
1507 } | 1496 } |
1508 configs += [ ":pdfium_config" ] | 1497 configs += [ ":pdfium_config" ] |
1509 } | 1498 } |
OLD | NEW |