Chromium Code Reviews| Index: gyp/v8.gyp |
| =================================================================== |
| --- gyp/v8.gyp (revision 0) |
| +++ gyp/v8.gyp (revision 0) |
| @@ -0,0 +1,81 @@ |
| +# GYP file to build experimental directory. |
|
robertphillips
2013/12/03 20:49:27
Update the description?
jcgregorio
2013/12/03 21:06:44
Done.
|
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'SkV8Example', |
| + 'type': 'executable', |
| + 'mac_bundle' : 1, |
| + 'include_dirs' : [ |
| + '../tools/flags', |
| + '../../../v8/include', |
| + ], |
| + 'includes': [], |
| + 'sources': [ |
| + '../experimental/SkV8Example/SkV8Example.h', |
| + '../experimental/SkV8Example/SkV8Example.cpp', |
| + ], |
| + 'dependencies': [ |
| + 'skia_lib.gyp:skia_lib', |
| + 'views.gyp:views', |
| + 'xml.gyp:xml', |
| + ], |
| + |
| + 'link_settings': { |
| + 'libraries': [ |
| + |
| + '-lpthread', |
| + '-lrt', |
| + '../../../v8/out/native/obj.target/tools/gyp/libv8_base.x64.a', |
| + '../../../v8/out/native/obj.target/tools/gyp/libv8_snapshot.a', |
| + |
| + '../../../v8/out/native/obj.target/third_party/icu/libicudata.a', |
| + '../../../v8/out/native/obj.target/third_party/icu/libicui18n.a', |
| + '../../../v8/out/native/obj.target/third_party/icu/libicuuc.a', |
| + |
| + '../../../v8/out/native/obj.target/icudata/third_party/icu/linux/icudt46l_dat.o', |
| + ], |
| + }, |
| + 'conditions' : [ |
| + [ 'skia_gpu == 1', { |
| + 'include_dirs' : [ |
| + '../src/gpu', #gl/GrGLUtil.h |
| + ] |
| + }], |
| + [ 'skia_os == "win"', { |
| + 'sources' : [ |
| + '../src/views/win/SkOSWindow_Win.cpp', |
| + '../src/views/win/skia_win.cpp', |
| + ], |
| + }, |
| + ], |
| + |
| + [ 'skia_os == "mac"', { |
| + 'sources': [ |
| + |
| + '../src/views/mac/SampleAppDelegate.h', |
| + '../src/views/mac/SampleAppDelegate.mm', |
| + '../src/views/mac/SkEventNotifier.mm', |
| + '../src/views/mac/skia_mac.mm', |
| + '../src/views/mac/SkNSView.h', |
| + '../src/views/mac/SkNSView.mm', |
| + '../src/views/mac/SkOptionsTableView.h', |
| + '../src/views/mac/SkOptionsTableView.mm', |
| + '../src/views/mac/SkOSWindow_Mac.mm', |
| + '../src/views/mac/SkTextFieldCell.h', |
| + '../src/views/mac/SkTextFieldCell.m', |
| + ], |
| + 'include_dirs' : [ |
| + '../src/views/mac/' |
| + ], |
| + 'xcode_settings' : { |
|
robertphillips
2013/12/03 20:49:27
Doesn't this have to change?
jcgregorio
2013/12/03 21:06:44
I have no idea, can I just copy the files over fro
robertphillips
2013/12/04 18:40:58
Let's leave dealing with this stuff until later.
|
| + 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist', |
| + }, |
| + 'mac_bundle_resources' : [ |
|
robertphillips
2013/12/03 20:49:27
This too?
|
| + '../experimental/SkiaExamples/SkiaExamples.xib' |
| + ], |
| + } |
| + ], |
| + ], |
| + } |
| + ], |
| +} |