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

Side by Side Diff: gyp/tools.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 | « gyp/tests.gypi ('k') | gyp/utils.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 various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 }, 112 },
113 }, 113 },
114 { 114 {
115 'target_name' : 'timer', 115 'target_name' : 'timer',
116 'type': 'static_library', 116 'type': 'static_library',
117 'sources': [ 117 'sources': [
118 '../tools/timer/Timer.cpp', 118 '../tools/timer/Timer.cpp',
119 '../tools/timer/TimerData.cpp', 119 '../tools/timer/TimerData.cpp',
120 ], 120 ],
121 'include_dirs': [ 121 'include_dirs': [
122 '../include/private',
122 '../src/core', 123 '../src/core',
123 '../src/gpu', 124 '../src/gpu',
124 ], 125 ],
125 'direct_dependent_settings': { 126 'direct_dependent_settings': {
126 'include_dirs': ['../tools/timer'], 127 'include_dirs': ['../tools/timer'],
127 }, 128 },
128 'dependencies': [ 129 'dependencies': [
129 'skia_lib.gyp:skia_lib', 130 'skia_lib.gyp:skia_lib',
130 'jsoncpp.gyp:jsoncpp', 131 'jsoncpp.gyp:jsoncpp',
131 ], 132 ],
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 'flags.gyp:flags', 784 'flags.gyp:flags',
784 'skia_lib.gyp:skia_lib', 785 'skia_lib.gyp:skia_lib',
785 'resources', 786 'resources',
786 ], 787 ],
787 }, 788 },
788 ], 789 ],
789 }, 790 },
790 ], 791 ],
791 ], 792 ],
792 } 793 }
OLDNEW
« no previous file with comments | « gyp/tests.gypi ('k') | gyp/utils.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698