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

Side by Side Diff: gyp/example.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 | « gyp/effects.gyp ('k') | gyp/gpu.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 # GYP file to build hello world example. 5 # GYP file to build hello world example.
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'HelloWorld', 12 'target_name': 'HelloWorld',
13 'type': 'executable', 13 'type': 'executable',
14 'include_dirs' : [ 14 'include_dirs' : [
15 '../include/private',
15 '../include/gpu', 16 '../include/gpu',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 '../example/HelloWorld.h', 19 '../example/HelloWorld.h',
19 '../example/HelloWorld.cpp', 20 '../example/HelloWorld.cpp',
20 ], 21 ],
21 'dependencies': [ 22 'dependencies': [
22 'skia_lib.gyp:skia_lib', 23 'skia_lib.gyp:skia_lib',
23 'views.gyp:views', 24 'views.gyp:views',
24 ], 25 ],
25 }, 26 },
26 ], 27 ],
27 } 28 }
OLDNEW
« no previous file with comments | « gyp/effects.gyp ('k') | gyp/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698