summaryrefslogtreecommitdiff
path: root/xfa.gyp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-07-12 10:41:43 -0700
committerCommit bot <commit-bot@chromium.org>2016-07-12 10:41:43 -0700
commit7f9c8609999bf3bd0b33b5b350fb9baa008cf967 (patch)
tree67b4ce77bc37a0338fa8de212bf818716032d210 /xfa.gyp
parent08fea801054f3afadb95d0a54efe7da6683c5c5d (diff)
downloadpdfium-7f9c8609999bf3bd0b33b5b350fb9baa008cf967.tar.xz
Create an fxjs static library
This CL moves the fxjs/ code out of the xfa library and into a fxjs library. Review-Url: https://codereview.chromium.org/2136273002
Diffstat (limited to 'xfa.gyp')
-rw-r--r--xfa.gyp30
1 files changed, 22 insertions, 8 deletions
diff --git a/xfa.gyp b/xfa.gyp
index 92ae06a000..d8c165ef88 100644
--- a/xfa.gyp
+++ b/xfa.gyp
@@ -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",