| 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("//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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 "core/include/fxcrt/fx_system.h", | 444 "core/include/fxcrt/fx_system.h", |
| 445 "core/include/fxcrt/fx_ucd.h", | 445 "core/include/fxcrt/fx_ucd.h", |
| 446 "core/include/fxcrt/fx_xml.h", | 446 "core/include/fxcrt/fx_xml.h", |
| 447 "core/src/fxcrt/extension.h", | 447 "core/src/fxcrt/extension.h", |
| 448 "core/src/fxcrt/fx_basic_array.cpp", | 448 "core/src/fxcrt/fx_basic_array.cpp", |
| 449 "core/src/fxcrt/fx_basic_bstring.cpp", | 449 "core/src/fxcrt/fx_basic_bstring.cpp", |
| 450 "core/src/fxcrt/fx_basic_buffer.cpp", | 450 "core/src/fxcrt/fx_basic_buffer.cpp", |
| 451 "core/src/fxcrt/fx_basic_coords.cpp", | 451 "core/src/fxcrt/fx_basic_coords.cpp", |
| 452 "core/src/fxcrt/fx_basic_gcc.cpp", | 452 "core/src/fxcrt/fx_basic_gcc.cpp", |
| 453 "core/src/fxcrt/fx_basic_list.cpp", | 453 "core/src/fxcrt/fx_basic_list.cpp", |
| 454 "core/src/fxcrt/fx_basic_maps.cpp", | |
| 455 "core/src/fxcrt/fx_basic_memmgr.cpp", | 454 "core/src/fxcrt/fx_basic_memmgr.cpp", |
| 456 "core/src/fxcrt/fx_basic_plex.cpp", | 455 "core/src/fxcrt/fx_basic_plex.cpp", |
| 457 "core/src/fxcrt/fx_basic_utf.cpp", | 456 "core/src/fxcrt/fx_basic_utf.cpp", |
| 458 "core/src/fxcrt/fx_basic_util.cpp", | 457 "core/src/fxcrt/fx_basic_util.cpp", |
| 459 "core/src/fxcrt/fx_basic_wstring.cpp", | 458 "core/src/fxcrt/fx_basic_wstring.cpp", |
| 460 "core/src/fxcrt/fx_bidi.cpp", | 459 "core/src/fxcrt/fx_bidi.cpp", |
| 461 "core/src/fxcrt/fx_extension.cpp", | 460 "core/src/fxcrt/fx_extension.cpp", |
| 462 "core/src/fxcrt/fx_ucddata.cpp", | 461 "core/src/fxcrt/fx_ucddata.cpp", |
| 463 "core/src/fxcrt/fx_unicode.cpp", | 462 "core/src/fxcrt/fx_unicode.cpp", |
| 464 "core/src/fxcrt/fx_xml_composer.cpp", | 463 "core/src/fxcrt/fx_xml_composer.cpp", |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 "//v8:v8_libplatform", | 782 "//v8:v8_libplatform", |
| 784 ] | 783 ] |
| 785 include_dirs += [ | 784 include_dirs += [ |
| 786 "//v8", | 785 "//v8", |
| 787 "//v8/include", | 786 "//v8/include", |
| 788 ] | 787 ] |
| 789 configs += [ "//v8:external_startup_data" ] | 788 configs += [ "//v8:external_startup_data" ] |
| 790 } | 789 } |
| 791 configs += [ ":pdfium_config" ] | 790 configs += [ ":pdfium_config" ] |
| 792 } | 791 } |
| OLD | NEW |