| 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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1406 "xfa/fxfa/app/xfa_fwladapter.h", | 1406 "xfa/fxfa/app/xfa_fwladapter.h", |
| 1407 "xfa/fxfa/app/xfa_fwltheme.cpp", | 1407 "xfa/fxfa/app/xfa_fwltheme.cpp", |
| 1408 "xfa/fxfa/app/xfa_fwltheme.h", | 1408 "xfa/fxfa/app/xfa_fwltheme.h", |
| 1409 "xfa/fxfa/app/xfa_rendercontext.cpp", | 1409 "xfa/fxfa/app/xfa_rendercontext.cpp", |
| 1410 "xfa/fxfa/app/xfa_textlayout.cpp", | 1410 "xfa/fxfa/app/xfa_textlayout.cpp", |
| 1411 "xfa/fxfa/app/xfa_textlayout.h", | 1411 "xfa/fxfa/app/xfa_textlayout.h", |
| 1412 "xfa/fxfa/fm2js/xfa_error.cpp", | 1412 "xfa/fxfa/fm2js/xfa_error.cpp", |
| 1413 "xfa/fxfa/fm2js/xfa_error.h", | 1413 "xfa/fxfa/fm2js/xfa_error.h", |
| 1414 "xfa/fxfa/fm2js/xfa_expression.cpp", | 1414 "xfa/fxfa/fm2js/xfa_expression.cpp", |
| 1415 "xfa/fxfa/fm2js/xfa_expression.h", | 1415 "xfa/fxfa/fm2js/xfa_expression.h", |
| 1416 "xfa/fxfa/fm2js/xfa_fm2jsapi.cpp", | |
| 1417 "xfa/fxfa/fm2js/xfa_fm2jsapi.h", | |
| 1418 "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp", | 1416 "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp", |
| 1419 "xfa/fxfa/fm2js/xfa_fm2jscontext.h", | 1417 "xfa/fxfa/fm2js/xfa_fm2jscontext.h", |
| 1420 "xfa/fxfa/fm2js/xfa_fmparse.cpp", | 1418 "xfa/fxfa/fm2js/xfa_fmparse.cpp", |
| 1421 "xfa/fxfa/fm2js/xfa_fmparse.h", | 1419 "xfa/fxfa/fm2js/xfa_fmparse.h", |
| 1422 "xfa/fxfa/fm2js/xfa_lexer.cpp", | 1420 "xfa/fxfa/fm2js/xfa_lexer.cpp", |
| 1423 "xfa/fxfa/fm2js/xfa_lexer.h", | 1421 "xfa/fxfa/fm2js/xfa_lexer.h", |
| 1424 "xfa/fxfa/fm2js/xfa_program.cpp", | 1422 "xfa/fxfa/fm2js/xfa_program.cpp", |
| 1425 "xfa/fxfa/fm2js/xfa_program.h", | 1423 "xfa/fxfa/fm2js/xfa_program.h", |
| 1426 "xfa/fxfa/fm2js/xfa_simpleexpression.cpp", | 1424 "xfa/fxfa/fm2js/xfa_simpleexpression.cpp", |
| 1427 "xfa/fxfa/fm2js/xfa_simpleexpression.h", | 1425 "xfa/fxfa/fm2js/xfa_simpleexpression.h", |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1699 } | 1697 } |
| 1700 | 1698 |
| 1701 if (pdf_is_standalone) { | 1699 if (pdf_is_standalone) { |
| 1702 source_set("samples") { | 1700 source_set("samples") { |
| 1703 testonly = true | 1701 testonly = true |
| 1704 deps = [ | 1702 deps = [ |
| 1705 "//samples", | 1703 "//samples", |
| 1706 ] | 1704 ] |
| 1707 } | 1705 } |
| 1708 } | 1706 } |
| OLD | NEW |