Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: BUILD.gn

Issue 1995003002: bring pdfium file in sync with chrome, fix mac build (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: update skia DEPS Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_common_config") { 9 config("pdfium_common_config") {
10 cflags = [] 10 cflags = []
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 "core/fxge/android/fpf_skiafont.cpp", 652 "core/fxge/android/fpf_skiafont.cpp",
653 "core/fxge/android/fpf_skiafont.h", 653 "core/fxge/android/fpf_skiafont.h",
654 "core/fxge/android/fpf_skiafontmgr.cpp", 654 "core/fxge/android/fpf_skiafontmgr.cpp",
655 "core/fxge/android/fpf_skiafontmgr.h", 655 "core/fxge/android/fpf_skiafontmgr.h",
656 "core/fxge/android/fpf_skiamodule.cpp", 656 "core/fxge/android/fpf_skiamodule.cpp",
657 "core/fxge/android/fpf_skiamodule.h", 657 "core/fxge/android/fpf_skiamodule.h",
658 "core/fxge/android/fx_android_font.cpp", 658 "core/fxge/android/fx_android_font.cpp",
659 "core/fxge/android/fx_android_font.h", 659 "core/fxge/android/fx_android_font.h",
660 "core/fxge/android/fx_android_imp.cpp", 660 "core/fxge/android/fx_android_imp.cpp",
661 "core/fxge/apple/apple_int.h", 661 "core/fxge/apple/apple_int.h",
662 "core/fxge/apple/fx_apple_platform.cpp",
663 "core/fxge/apple/fx_mac_imp.cpp", 662 "core/fxge/apple/fx_mac_imp.cpp",
664 "core/fxge/apple/fx_quartz_device.cpp", 663 "core/fxge/apple/fx_quartz_device.cpp",
665 "core/fxge/dib/dib_int.h", 664 "core/fxge/dib/dib_int.h",
666 "core/fxge/dib/fx_dib_composite.cpp", 665 "core/fxge/dib/fx_dib_composite.cpp",
667 "core/fxge/dib/fx_dib_convert.cpp", 666 "core/fxge/dib/fx_dib_convert.cpp",
668 "core/fxge/dib/fx_dib_engine.cpp", 667 "core/fxge/dib/fx_dib_engine.cpp",
669 "core/fxge/dib/fx_dib_main.cpp", 668 "core/fxge/dib/fx_dib_main.cpp",
670 "core/fxge/dib/fx_dib_transform.cpp", 669 "core/fxge/dib/fx_dib_transform.cpp",
671 "core/fxge/fontdata/chromefontdata/FoxitDingbats.cpp", 670 "core/fxge/fontdata/chromefontdata/FoxitDingbats.cpp",
672 "core/fxge/fontdata/chromefontdata/FoxitFixed.cpp", 671 "core/fxge/fontdata/chromefontdata/FoxitFixed.cpp",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 710
712 if (pdf_use_skia) { 711 if (pdf_use_skia) {
713 sources += [ "core/fxge/skia/fx_skia_device.cpp" ] 712 sources += [ "core/fxge/skia/fx_skia_device.cpp" ]
714 deps = [ 713 deps = [
715 "//skia", 714 "//skia",
716 ] 715 ]
717 } else { 716 } else {
718 sources += [ 717 sources += [
719 "core/fxge/agg/fx_agg_driver.cpp", 718 "core/fxge/agg/fx_agg_driver.cpp",
720 "core/fxge/agg/fx_agg_driver.h", 719 "core/fxge/agg/fx_agg_driver.h",
720 "core/fxge/apple/fx_apple_platform.cpp",
721 ] 721 ]
722 deps = [ 722 deps = [
723 "third_party:fx_agg", 723 "third_party:fx_agg",
724 ] 724 ]
725 } 725 }
726 726
727 if (is_win) { 727 if (is_win) {
728 sources += [ 728 sources += [
729 "core/fxge/win32/dwrite_int.h", 729 "core/fxge/win32/dwrite_int.h",
730 "core/fxge/win32/fx_win32_device.cpp", 730 "core/fxge/win32/fx_win32_device.cpp",
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
1584 } 1584 }
1585 1585
1586 if (pdf_is_standalone) { 1586 if (pdf_is_standalone) {
1587 source_set("samples") { 1587 source_set("samples") {
1588 testonly = true 1588 testonly = true
1589 deps = [ 1589 deps = [
1590 "//samples", 1590 "//samples",
1591 ] 1591 ]
1592 } 1592 }
1593 } 1593 }
OLDNEW
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698