OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # | 5 # |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'SampleApp', | 9 'target_name': 'SampleApp', |
10 'type': 'executable', | 10 'type': 'executable', |
11 'include_dirs' : [ | 11 'include_dirs' : [ |
12 '../include/private', | 12 '../include/private', |
13 '../src/core', | 13 '../src/core', |
14 '../src/effects', #needed for BlurMask.h | 14 '../src/effects', #needed for BlurMask.h |
15 '../src/gpu', # needed by SkLua.cpp | 15 '../src/gpu', # needed by SkLua.cpp |
16 '../src/image', | 16 '../src/image', |
17 '../src/images', | 17 '../src/images', |
18 '../src/lazy', | 18 '../src/lazy', |
| 19 '../src/pathops', |
19 '../gm', # needed to pull gm.h | 20 '../gm', # needed to pull gm.h |
20 '../samplecode', # To pull SampleApp.h and SampleCode.h | 21 '../samplecode', # To pull SampleApp.h and SampleCode.h |
21 '../tools/debugger', | 22 '../tools/debugger', |
22 '../tools', | 23 '../tools', |
23 '../experimental', | 24 '../experimental', |
24 ], | 25 ], |
25 'includes': [ | 26 'includes': [ |
26 'gmslides.gypi', | 27 'gmslides.gypi', |
27 ], | 28 ], |
28 'sources': [ | 29 'sources': [ |
29 '../gm/gm.cpp', | 30 '../gm/gm.cpp', |
30 '../samplecode/GMSampleView.h', | 31 '../samplecode/GMSampleView.h', |
31 '../samplecode/GMSampleView.cpp', | 32 '../samplecode/GMSampleView.cpp', |
32 '../samplecode/ClockFaceView.cpp', | 33 '../samplecode/ClockFaceView.cpp', |
33 '../samplecode/OverView.cpp', | 34 '../samplecode/OverView.cpp', |
34 '../samplecode/OverView.h', | 35 '../samplecode/OverView.h', |
35 '../samplecode/PerlinPatch.cpp', | 36 '../samplecode/PerlinPatch.cpp', |
36 '../samplecode/Sample2PtRadial.cpp', | 37 '../samplecode/Sample2PtRadial.cpp', |
37 '../samplecode/SampleAAClip.cpp', | 38 '../samplecode/SampleAAClip.cpp', |
| 39 '../samplecode/SampleAAGeometry.cpp', |
38 '../samplecode/SampleAARects.cpp', | 40 '../samplecode/SampleAARects.cpp', |
39 '../samplecode/SampleAARectModes.cpp', | 41 '../samplecode/SampleAARectModes.cpp', |
40 '../samplecode/SampleAll.cpp', | 42 '../samplecode/SampleAll.cpp', |
41 '../samplecode/SampleAnimatedText.cpp', | 43 '../samplecode/SampleAnimatedText.cpp', |
42 '../samplecode/SampleAnimBlur.cpp', | 44 '../samplecode/SampleAnimBlur.cpp', |
43 '../samplecode/SampleApp.cpp', | 45 '../samplecode/SampleApp.cpp', |
44 '../samplecode/SampleArc.cpp', | 46 '../samplecode/SampleArc.cpp', |
45 '../samplecode/SampleAtlas.cpp', | 47 '../samplecode/SampleAtlas.cpp', |
46 '../samplecode/SampleBigBlur.cpp', | 48 '../samplecode/SampleBigBlur.cpp', |
47 '../samplecode/SampleBigGradient.cpp', | 49 '../samplecode/SampleBigGradient.cpp', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 ], | 256 ], |
255 }], | 257 }], |
256 [ 'not skia_pdf', { | 258 [ 'not skia_pdf', { |
257 'dependencies!': [ 'pdf.gyp:pdf' ], | 259 'dependencies!': [ 'pdf.gyp:pdf' ], |
258 'dependencies': [ 'pdf.gyp:nopdf' ], | 260 'dependencies': [ 'pdf.gyp:nopdf' ], |
259 }], | 261 }], |
260 ], | 262 ], |
261 }, | 263 }, |
262 ], | 264 ], |
263 } | 265 } |
OLD | NEW |