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', | |
20 '../src/core', | 19 '../src/core', |
21 '../src/effects', #needed for BlurMask.h | 20 '../src/effects', #needed for BlurMask.h |
22 '../src/gpu', # needed by SkLua.cpp | 21 '../src/gpu', # needed by SkLua.cpp |
23 '../src/images', | 22 '../src/images', |
24 '../src/lazy', | 23 '../src/lazy', |
25 '../gm', # needed to pull gm.h | 24 '../gm', # needed to pull gm.h |
26 '../samplecode', # To pull SampleApp.h and SampleCode.h | 25 '../samplecode', # To pull SampleApp.h and SampleCode.h |
27 '../src/pipe/utils', # For TiledPipeController | 26 '../src/pipe/utils', # For TiledPipeController |
28 '../src/utils/debugger', | 27 '../src/utils/debugger', |
29 ], | 28 ], |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 }], | 261 }], |
263 [ 'skia_gpu == 1', { | 262 [ 'skia_gpu == 1', { |
264 'dependencies': [ | 263 'dependencies': [ |
265 'gputest.gyp:skgputest', | 264 'gputest.gyp:skgputest', |
266 ], | 265 ], |
267 }], | 266 }], |
268 ], | 267 ], |
269 }, | 268 }, |
270 ], | 269 ], |
271 } | 270 } |
OLD | NEW |