| 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 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", | 1486 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp", |
| 1487 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", | 1487 "fpdfsdk/src/fpdfdoc_embeddertest.cpp", |
| 1488 "fpdfsdk/src/fpdfedit_embeddertest.cpp", | 1488 "fpdfsdk/src/fpdfedit_embeddertest.cpp", |
| 1489 "fpdfsdk/src/fpdfext_embeddertest.cpp", | 1489 "fpdfsdk/src/fpdfext_embeddertest.cpp", |
| 1490 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", | 1490 "fpdfsdk/src/fpdfformfill_embeddertest.cpp", |
| 1491 "fpdfsdk/src/fpdfsave_embeddertest.cpp", | 1491 "fpdfsdk/src/fpdfsave_embeddertest.cpp", |
| 1492 "fpdfsdk/src/fpdftext_embeddertest.cpp", | 1492 "fpdfsdk/src/fpdftext_embeddertest.cpp", |
| 1493 "fpdfsdk/src/fpdfview_c_api_test.c", | 1493 "fpdfsdk/src/fpdfview_c_api_test.c", |
| 1494 "fpdfsdk/src/fpdfview_c_api_test.h", | 1494 "fpdfsdk/src/fpdfview_c_api_test.h", |
| 1495 "fpdfsdk/src/fpdfview_embeddertest.cpp", | 1495 "fpdfsdk/src/fpdfview_embeddertest.cpp", |
| 1496 "fpdfsdk/src/fsdk_baseform_embeddertest.cpp", |
| 1496 "testing/embedder_test.cpp", | 1497 "testing/embedder_test.cpp", |
| 1497 "testing/embedder_test.h", | 1498 "testing/embedder_test.h", |
| 1498 "testing/embedder_test_mock_delegate.h", | 1499 "testing/embedder_test_mock_delegate.h", |
| 1499 "testing/embedder_test_timer_handling_delegate.h", | 1500 "testing/embedder_test_timer_handling_delegate.h", |
| 1500 "xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp", | 1501 "xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp", |
| 1501 ] | 1502 ] |
| 1502 deps = [ | 1503 deps = [ |
| 1503 "//testing/gmock", | 1504 "//testing/gmock", |
| 1504 "//testing/gtest", | 1505 "//testing/gtest", |
| 1505 ":pdfium", | 1506 ":pdfium", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1518 "//v8:v8_libplatform", | 1519 "//v8:v8_libplatform", |
| 1519 ] | 1520 ] |
| 1520 include_dirs += [ | 1521 include_dirs += [ |
| 1521 "//v8", | 1522 "//v8", |
| 1522 "//v8/include", | 1523 "//v8/include", |
| 1523 ] | 1524 ] |
| 1524 configs += [ "//v8:external_startup_data" ] | 1525 configs += [ "//v8:external_startup_data" ] |
| 1525 } | 1526 } |
| 1526 configs += [ ":pdfium_config" ] | 1527 configs += [ ":pdfium_config" ] |
| 1527 } | 1528 } |
| OLD | NEW |