diff options
Diffstat (limited to 'xfa.gyp')
-rw-r--r-- | xfa.gyp | 30 |
1 files changed, 22 insertions, 8 deletions
@@ -16,27 +16,22 @@ }, "targets":[ { - "target_name":"xfa", - "type":"static_library", + "target_name": "fxjs", + "type": "static_library", 'include_dirs': [ # This is implicit in GN. '<(DEPTH)', '.', - 'third_party/freetype/include', - 'third_party/freetype/include/freetype', '<(DEPTH)/v8', '<(DEPTH)/v8/include', ], - 'defines' : [ - 'FT2_BUILD_LIBRARY', - ], 'dependencies': [ '<(DEPTH)/v8/src/v8.gyp:v8', ], 'export_dependent_settings': [ '<(DEPTH)/v8/src/v8.gyp:v8', ], - "sources":[ + "sources": [ "fxjs/cfxjse_arguments.cpp", "fxjs/cfxjse_class.cpp", "fxjs/cfxjse_context.cpp", @@ -50,6 +45,25 @@ "fxjs/include/cfxjse_context.h", "fxjs/include/cfxjse_value.h", "fxjs/include/fxjse.h", + ] + }, + { + "target_name":"xfa", + "type":"static_library", + 'include_dirs': [ + # This is implicit in GN. + '<(DEPTH)', + '.', + 'third_party/freetype/include', + 'third_party/freetype/include/freetype', + ], + 'defines' : [ + 'FT2_BUILD_LIBRARY', + ], + 'dependencies': [ + ':fxjs', + ], + "sources":[ "xfa/fde/cfde_path.cpp", "xfa/fde/cfde_path.h", "xfa/fde/cfde_txtedtbuf.cpp", |