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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1265443002: add -Iinclude/private anywhere we have -Isrc/core (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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/bench.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 }], 268 }],
268 [ 'skia_gpu == 1', { 269 [ 'skia_gpu == 1', {
269 'dependencies': [ 270 'dependencies': [
270 'gputest.gyp:skgputest', 271 'gputest.gyp:skgputest',
271 ], 272 ],
272 }], 273 }],
273 ], 274 ],
274 }, 275 },
275 ], 276 ],
276 } 277 }
OLDNEW
« no previous file with comments | « no previous file | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698