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/images', | 16 '../src/images', |
17 '../src/lazy', | 17 '../src/lazy', |
18 '../gm', # needed to pull gm.h | 18 '../gm', # needed to pull gm.h |
19 '../samplecode', # To pull SampleApp.h and SampleCode.h | 19 '../samplecode', # To pull SampleApp.h and SampleCode.h |
20 '../src/utils/debugger', | 20 '../tools/debugger', |
21 '../tools', | 21 '../tools', |
22 '../experimental', | 22 '../experimental', |
23 ], | 23 ], |
24 'includes': [ | 24 'includes': [ |
25 'gmslides.gypi', | 25 'gmslides.gypi', |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
28 '../gm/gm.cpp', | 28 '../gm/gm.cpp', |
29 '../samplecode/GMSampleView.h', | 29 '../samplecode/GMSampleView.h', |
30 '../samplecode/GMSampleView.cpp', | 30 '../samplecode/GMSampleView.cpp', |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 ], | 265 ], |
266 }], | 266 }], |
267 [ 'not skia_pdf', { | 267 [ 'not skia_pdf', { |
268 'dependencies!': [ 'pdf.gyp:pdf' ], | 268 'dependencies!': [ 'pdf.gyp:pdf' ], |
269 'dependencies': [ 'pdf.gyp:nopdf' ], | 269 'dependencies': [ 'pdf.gyp:nopdf' ], |
270 }], | 270 }], |
271 ], | 271 ], |
272 }, | 272 }, |
273 ], | 273 ], |
274 } | 274 } |
OLD | NEW |