OLD | NEW |
1 { | 1 { |
2 "variables": { | 2 "variables": { |
3 "chromium_code": 1, | 3 "chromium_code": 1, |
4 "pdf_enable_v8%": 1, | 4 "pdf_enable_v8%": 1, |
5 "variables": { | 5 "variables": { |
6 'clang_use_chrome_plugins': 1, | 6 'clang_use_chrome_plugins': 1, |
7 }, | 7 }, |
8 }, | 8 }, |
9 "target_defaults": { | 9 "target_defaults": { |
10 "defines": [ | 10 "defines": [ |
11 "PDF_ENABLE_XFA", | 11 "PDF_ENABLE_XFA", |
12 ], | 12 ], |
13 'msvs_disabled_warnings': [ | 13 'msvs_disabled_warnings': [ |
14 4267, | 14 4267, |
15 ], | 15 ], |
16 }, | 16 }, |
17 "targets":[ | 17 "targets":[ |
18 { | 18 { |
19 "target_name": "fxjs", | |
20 "type": "static_library", | |
21 'include_dirs': [ | |
22 # This is implicit in GN. | |
23 '<(DEPTH)', | |
24 '.', | |
25 '<(DEPTH)/v8', | |
26 '<(DEPTH)/v8/include', | |
27 ], | |
28 'dependencies': [ | |
29 '<(DEPTH)/v8/src/v8.gyp:v8', | |
30 ], | |
31 'export_dependent_settings': [ | |
32 '<(DEPTH)/v8/src/v8.gyp:v8', | |
33 ], | |
34 "sources": [ | |
35 "fxjs/cfxjse_arguments.cpp", | |
36 "fxjs/cfxjse_class.cpp", | |
37 "fxjs/cfxjse_context.cpp", | |
38 "fxjs/cfxjse_isolatetracker.cpp", | |
39 "fxjs/cfxjse_isolatetracker.h", | |
40 "fxjs/cfxjse_runtimedata.cpp", | |
41 "fxjs/cfxjse_runtimedata.h", | |
42 "fxjs/cfxjse_value.cpp", | |
43 "fxjs/include/cfxjse_arguments.h", | |
44 "fxjs/include/cfxjse_class.h", | |
45 "fxjs/include/cfxjse_context.h", | |
46 "fxjs/include/cfxjse_value.h", | |
47 "fxjs/include/fxjse.h", | |
48 ] | |
49 }, | |
50 { | |
51 "target_name":"xfa", | 19 "target_name":"xfa", |
52 "type":"static_library", | 20 "type":"static_library", |
53 'include_dirs': [ | 21 'include_dirs': [ |
54 # This is implicit in GN. | 22 # This is implicit in GN. |
55 '<(DEPTH)', | 23 '<(DEPTH)', |
56 '.', | 24 '.', |
57 'third_party/freetype/include', | 25 'third_party/freetype/include', |
58 'third_party/freetype/include/freetype', | 26 'third_party/freetype/include/freetype', |
59 ], | 27 ], |
60 'defines' : [ | 28 'defines' : [ |
61 'FT2_BUILD_LIBRARY', | 29 'FT2_BUILD_LIBRARY', |
62 ], | 30 ], |
63 'dependencies': [ | |
64 ':fxjs', | |
65 ], | |
66 "sources":[ | 31 "sources":[ |
67 "xfa/fde/cfde_path.cpp", | 32 "xfa/fde/cfde_path.cpp", |
68 "xfa/fde/cfde_path.h", | 33 "xfa/fde/cfde_path.h", |
69 "xfa/fde/cfde_txtedtbuf.cpp", | 34 "xfa/fde/cfde_txtedtbuf.cpp", |
70 "xfa/fde/cfde_txtedtbuf.h", | 35 "xfa/fde/cfde_txtedtbuf.h", |
71 "xfa/fde/cfde_txtedtbufiter.cpp", | 36 "xfa/fde/cfde_txtedtbufiter.cpp", |
72 "xfa/fde/cfde_txtedtbufiter.h", | 37 "xfa/fde/cfde_txtedtbufiter.h", |
73 "xfa/fde/cfde_txtedtdorecord_deleterange.cpp", | 38 "xfa/fde/cfde_txtedtdorecord_deleterange.cpp", |
74 "xfa/fde/cfde_txtedtdorecord_deleterange.h", | 39 "xfa/fde/cfde_txtedtdorecord_deleterange.h", |
75 "xfa/fde/cfde_txtedtdorecord_insert.cpp", | 40 "xfa/fde/cfde_txtedtdorecord_insert.cpp", |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 "sources": [], | 593 "sources": [], |
629 }], | 594 }], |
630 ["OS == 'mac'", { | 595 ["OS == 'mac'", { |
631 "configurations": {}, | 596 "configurations": {}, |
632 "sources": [], | 597 "sources": [], |
633 }], | 598 }], |
634 ] | 599 ] |
635 } | 600 } |
636 ] | 601 ] |
637 } | 602 } |
OLD | NEW |