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

Side by Side Diff: gyp/canvas_state_lib.gyp

Issue 400043003: Run CanvasState test across a library boundary. (Closed) Base URL: https://skia.googlesource.com/skia.git@canvasState2
Patch Set: Created 6 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | gyp/common_conditions.gypi » ('j') | gyp/common_conditions.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Building test for running CanvasState
2
3 {
4 'targets' : [
5 {
6 'target_name' : 'canvas_state_lib',
7 'type' : 'shared_library',
8 # FIXME: Is there a way to ensure that -fPIC was used for skia_lib?
9 'dependencies' : [ 'skia_lib.gyp:skia_lib'],
10 'sources' : [
11 '../tests/CanvasStateHelpers.cpp',
12 ],
13 'cflags' : [
14 '-fPIC',
15 ],
16 },
17 {
18 # Dummy 'most' target, since gyp_skia sets 'most' to be the default.
djsollen 2014/07/22 15:06:34 Can you remove this as well? How does canvas_stat
scroggo 2014/07/22 17:10:10 Currently, it does not. In order to build it, you
scroggo 2014/07/22 18:12:01 Done.
19 'target_name' : 'most',
20 'type' : 'none',
21 'dependencies' : [
22 'canvas_state_lib',
23 ],
24 }
25 ],
26 }
OLDNEW
« no previous file with comments | « no previous file | gyp/common_conditions.gypi » ('j') | gyp/common_conditions.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698