| 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 1417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", | 1428 "core/src/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", |
| 1429 "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", | 1429 "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", |
| 1430 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", | 1430 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 1431 "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects_unittest.cpp", | 1431 "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects_unittest.cpp", |
| 1432 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", | 1432 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_unittest.cpp", |
| 1433 "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility_unittest.cpp", | 1433 "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility_unittest.cpp", |
| 1434 "core/src/fpdfdoc/doc_basic_unittest.cpp", | 1434 "core/src/fpdfdoc/doc_basic_unittest.cpp", |
| 1435 "core/src/fpdftext/fpdf_text_int_unittest.cpp", | 1435 "core/src/fpdftext/fpdf_text_int_unittest.cpp", |
| 1436 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", | 1436 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
| 1437 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", | 1437 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1438 "core/src/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1438 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", | 1439 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1439 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", | 1440 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1440 "core/src/fxcrt/fx_bidi_unittest.cpp", | 1441 "core/src/fxcrt/fx_bidi_unittest.cpp", |
| 1441 "core/src/fxcrt/fx_extension_unittest.cpp", | 1442 "core/src/fxcrt/fx_extension_unittest.cpp", |
| 1442 "core/src/fxcrt/fx_system_unittest.cpp", | 1443 "core/src/fxcrt/fx_system_unittest.cpp", |
| 1443 ] | 1444 ] |
| 1444 deps = [ | 1445 deps = [ |
| 1445 "//testing/gtest", | 1446 "//testing/gtest", |
| 1446 "//testing/gtest:gtest_main", | 1447 "//testing/gtest:gtest_main", |
| 1447 ":pdfium", | 1448 ":pdfium", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 "//v8:v8_libplatform", | 1500 "//v8:v8_libplatform", |
| 1500 ] | 1501 ] |
| 1501 include_dirs += [ | 1502 include_dirs += [ |
| 1502 "//v8", | 1503 "//v8", |
| 1503 "//v8/include", | 1504 "//v8/include", |
| 1504 ] | 1505 ] |
| 1505 configs += [ "//v8:external_startup_data" ] | 1506 configs += [ "//v8:external_startup_data" ] |
| 1506 } | 1507 } |
| 1507 configs += [ ":pdfium_config" ] | 1508 configs += [ ":pdfium_config" ] |
| 1508 } | 1509 } |
| OLD | NEW |