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

Unified Diff: gyp/v8.gyp

Issue 93933005: V8 and Skia (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: no v8 in .h Created 7 years 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 | « gyp/everything.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/v8.gyp
===================================================================
--- gyp/v8.gyp (revision 0)
+++ gyp/v8.gyp (revision 0)
@@ -0,0 +1,81 @@
+# GYP file to build a V8 sample.
+{
+ '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' : {
+ 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist',
+ },
+ 'mac_bundle_resources' : [
+ '../experimental/SkiaExamples/SkiaExamples.xib'
+ ],
+ }
+ ],
+ ],
+ }
+ ],
+}
« no previous file with comments | « gyp/everything.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698