| 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 1499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1510 "xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp", | 1510 "xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp", |
| 1511 ] | 1511 ] |
| 1512 deps = [ | 1512 deps = [ |
| 1513 "//testing/gmock", | 1513 "//testing/gmock", |
| 1514 "//testing/gtest", | 1514 "//testing/gtest", |
| 1515 ":pdfium", | 1515 ":pdfium", |
| 1516 ":test_support", | 1516 ":test_support", |
| 1517 ] | 1517 ] |
| 1518 include_dirs = [] | 1518 include_dirs = [] |
| 1519 if (pdf_enable_v8) { | 1519 if (pdf_enable_v8) { |
| 1520 sources += [ "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp" ] | 1520 sources += [ |
| 1521 "fpdfsdk/src/javascript/public_methods_embeddertest.cpp", |
| 1522 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp", |
| 1523 "testing/js_embedder_test.cpp", |
| 1524 "testing/js_embedder_test.h", |
| 1525 ] |
| 1521 deps += [ | 1526 deps += [ |
| 1522 "//v8", | 1527 "//v8", |
| 1523 "//v8:v8_libplatform", | 1528 "//v8:v8_libplatform", |
| 1524 ] | 1529 ] |
| 1525 include_dirs += [ | 1530 include_dirs += [ |
| 1526 "//v8", | 1531 "//v8", |
| 1527 "//v8/include", | 1532 "//v8/include", |
| 1528 ] | 1533 ] |
| 1529 configs += [ "//v8:external_startup_data" ] | 1534 configs += [ "//v8:external_startup_data" ] |
| 1530 } | 1535 } |
| 1531 configs += [ ":pdfium_config" ] | 1536 configs += [ ":pdfium_config" ] |
| 1532 } | 1537 } |
| OLD | NEW |