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 'includes': [ | 7 'includes': [ |
8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
9 ], | 9 ], |
10 'variables': { | 10 'variables': { |
11 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp | 11 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp |
12 'sample_pdf_file_viewer%': 0, | 12 'sample_pdf_file_viewer%': 0, |
13 }, | 13 }, |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'SampleApp', | 16 'target_name': 'SampleApp', |
17 'type': 'executable', | 17 'type': 'executable', |
18 'include_dirs' : [ | 18 'include_dirs' : [ |
| 19 '../include/private', |
19 '../src/core', | 20 '../src/core', |
20 '../src/effects', #needed for BlurMask.h | 21 '../src/effects', #needed for BlurMask.h |
21 '../src/gpu', # needed by SkLua.cpp | 22 '../src/gpu', # needed by SkLua.cpp |
22 '../src/images', | 23 '../src/images', |
23 '../src/lazy', | 24 '../src/lazy', |
24 '../gm', # needed to pull gm.h | 25 '../gm', # needed to pull gm.h |
25 '../samplecode', # To pull SampleApp.h and SampleCode.h | 26 '../samplecode', # To pull SampleApp.h and SampleCode.h |
26 '../src/pipe/utils', # For TiledPipeController | 27 '../src/pipe/utils', # For TiledPipeController |
27 '../src/utils/debugger', | 28 '../src/utils/debugger', |
28 ], | 29 ], |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 }], | 262 }], |
262 [ 'skia_gpu == 1', { | 263 [ 'skia_gpu == 1', { |
263 'dependencies': [ | 264 'dependencies': [ |
264 'gputest.gyp:skgputest', | 265 'gputest.gyp:skgputest', |
265 ], | 266 ], |
266 }], | 267 }], |
267 ], | 268 ], |
268 }, | 269 }, |
269 ], | 270 ], |
270 } | 271 } |
OLD | NEW |