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

Unified Diff: samples/openglui/emulator/emulator.gyp

Issue 12186002: Canvas API. There are still a number of things to do: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
Index: samples/openglui/emulator/emulator.gyp
===================================================================
--- samples/openglui/emulator/emulator.gyp (revision 17737)
+++ samples/openglui/emulator/emulator.gyp (working copy)
@@ -29,7 +29,8 @@
'destination': '<(PRODUCT_DIR)',
'files': [
'../../../runtime/embedders/openglui/common/gl.dart',
- '../src/raytrace.dart'
+ '../src/openglui_raytrace.dart',
+ '../src/openglui_canvas_tests.dart'
],
}],
},
@@ -50,7 +51,31 @@
['OS=="linux"',
{
'link_settings': {
- 'libraries': [ '-lGL', '-lglut', '-lGLU', '-lm', '-lc' ],
+ 'libraries': [
+ '-Wl,--start-group',
+ '-lskia_effects',
+ '-lskia_images',
+ '-lskia_core',
+ '-lskia_opts',
+ '-lskia_opts_ssse3',
+ '-lskia_ports',
+ '-lskia_sfnt',
+ '-lskia_utils',
+ '-lskia_gr',
+ '-lskia_skgr',
+ '-Wl,--end-group',
+ '-lfreetype',
+ '-lGL',
+ '-lglut',
+ '-lGLU',
+ '-lm',
+ '-lc' ],
+ 'ldflags': [
+ '-Wall',
+ '-g',
+ # TODO(gram): handle release mode.
+ '-Lthird_party/skia-desktop/trunk/out/Debug',
+ ],
},
}
],
« no previous file with comments | « runtime/embedders/openglui/openglui_embedder.gypi ('k') | samples/openglui/emulator/mobile_emulator_sample.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698