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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1217293004: Move headers used by headers in include/ to include/private. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: move SkChecksum too Created 5 years, 5 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 | « PRESUBMIT.py ('k') | 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698