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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1678893003: moved debugger support files from src/utils/debugger to tools/debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/debugger.gyp » ('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 '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
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 }
OLDNEW
« no previous file with comments | « no previous file | gyp/debugger.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698