Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: xfa.gyp

Issue 2056663004: Move xfa/fxjse/ to fxjse/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fxjse/value.cpp ('k') | xfa/fxfa/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa.gyp
diff --git a/xfa.gyp b/xfa.gyp
index 0a63ed3c290cea24e583696ff72eb360a58676be..2066190c988a37358f9de2c3d3ac4dec8fac4ab0 100644
--- a/xfa.gyp
+++ b/xfa.gyp
@@ -21,11 +21,31 @@
'.',
'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":[
+ "fxjse/class.cpp",
+ "fxjse/context.cpp",
+ "fxjse/context.h",
+ "fxjse/dynprop.cpp",
+ "fxjse/include/cfxjse_arguments.h",
+ "fxjse/include/cfxjse_class.h",
+ "fxjse/include/cfxjse_value.h"
+ "fxjse/include/fxjse.h",
+ "fxjse/runtime.cpp",
+ "fxjse/runtime.h",
+ "fxjse/scope_inline.h",
+ "fxjse/value.cpp",
"xfa/fxfa/include/fxfa.h",
"xfa/fxfa/include/fxfa_basic.h",
"xfa/fxfa/include/fxfa_widget.h",
@@ -693,39 +713,11 @@
"xfa/fxgraphics/cfx_shading.cpp",
"xfa/fxgraphics/cfx_shading.h",
"xfa/fxgraphics/include/cfx_graphics.h",
- "xfa/fxjse/include/fxjse.h",
],
"conditions": [
- ["clang==1" , {
- }],
["os_posix==1 and clang==0", { # When GCC
'cflags': [ '-Wno-strict-overflow' ],
}],
- ["pdf_enable_v8==1", {
- 'dependencies': [
- '<(DEPTH)/v8/src/v8.gyp:v8',
- ],
- 'export_dependent_settings': [
- '<(DEPTH)/v8/src/v8.gyp:v8',
- ],
- 'include_dirs': [
- '<(DEPTH)/v8',
- '<(DEPTH)/v8/include',
- ],
- 'sources': [
- "xfa/fxjse/cfxjse_arguments.h",
- "xfa/fxjse/class.cpp",
- "xfa/fxjse/class.h",
- "xfa/fxjse/context.cpp",
- "xfa/fxjse/context.h",
- "xfa/fxjse/dynprop.cpp",
- "xfa/fxjse/runtime.cpp",
- "xfa/fxjse/runtime.h",
- "xfa/fxjse/scope_inline.h",
- "xfa/fxjse/value.cpp",
- "xfa/fxjse/value.h"
- ],
- }],
["OS == 'win'", {
"configurations": {
"Debug": {
« no previous file with comments | « fxjse/value.cpp ('k') | xfa/fxfa/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698