| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("pdfium.gni") | 6 import("pdfium.gni") |
| 7 | 7 |
| 8 config("pdfium_config") { | 8 config("pdfium_config") { |
| 9 cflags = [] | 9 cflags = [] |
| 10 include_dirs = [ | 10 include_dirs = [ |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 if (is_win) { | 602 if (is_win) { |
| 603 sources += [ | 603 sources += [ |
| 604 "core/src/fxge/win32/dwrite_int.h", | 604 "core/src/fxge/win32/dwrite_int.h", |
| 605 "core/src/fxge/win32/fx_win32_device.cpp", | 605 "core/src/fxge/win32/fx_win32_device.cpp", |
| 606 "core/src/fxge/win32/fx_win32_dib.cpp", | 606 "core/src/fxge/win32/fx_win32_dib.cpp", |
| 607 "core/src/fxge/win32/fx_win32_dwrite.cpp", | 607 "core/src/fxge/win32/fx_win32_dwrite.cpp", |
| 608 "core/src/fxge/win32/fx_win32_gdipext.cpp", | 608 "core/src/fxge/win32/fx_win32_gdipext.cpp", |
| 609 "core/src/fxge/win32/fx_win32_print.cpp", | 609 "core/src/fxge/win32/fx_win32_print.cpp", |
| 610 "core/src/fxge/win32/win32_int.h", | 610 "core/src/fxge/win32/win32_int.h", |
| 611 ] | 611 ] |
| 612 configs -= [ | 612 configs -= [ "//build/config/win:lean_and_mean" ] |
| 613 "//build/config/win:lean_and_mean", | |
| 614 "//build/config/win:nominmax", | |
| 615 ] | |
| 616 } | 613 } |
| 617 } | 614 } |
| 618 | 615 |
| 619 static_library("fxedit") { | 616 static_library("fxedit") { |
| 620 sources = [ | 617 sources = [ |
| 621 "fpdfsdk/include/fxedit/fx_edit.h", | 618 "fpdfsdk/include/fxedit/fx_edit.h", |
| 622 "fpdfsdk/include/fxedit/fxet_edit.h", | 619 "fpdfsdk/include/fxedit/fxet_edit.h", |
| 623 "fpdfsdk/include/fxedit/fxet_list.h", | 620 "fpdfsdk/include/fxedit/fxet_list.h", |
| 624 "fpdfsdk/include/fxedit/fxet_stub.h", | 621 "fpdfsdk/include/fxedit/fxet_stub.h", |
| 625 "fpdfsdk/src/fxedit/fxet_ap.cpp", | 622 "fpdfsdk/src/fxedit/fxet_ap.cpp", |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1521 "//v8", | 1518 "//v8", |
| 1522 "//v8:v8_libplatform", | 1519 "//v8:v8_libplatform", |
| 1523 ] | 1520 ] |
| 1524 include_dirs += [ | 1521 include_dirs += [ |
| 1525 "//v8", | 1522 "//v8", |
| 1526 "//v8/include", | 1523 "//v8/include", |
| 1527 ] | 1524 ] |
| 1528 } | 1525 } |
| 1529 configs += [ ":pdfium_config" ] | 1526 configs += [ ":pdfium_config" ] |
| 1530 } | 1527 } |
| OLD | NEW |