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

Side by Side Diff: gyp/tools.gyp

Issue 1272293004: Move SkTemplates.h to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: It's a struct! 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/sfnt.gyp ('k') | include/codec/SkCodec.h » ('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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 '../tools/skdiff.h', 156 '../tools/skdiff.h',
157 '../tools/skdiff_html.cpp', 157 '../tools/skdiff_html.cpp',
158 '../tools/skdiff_html.h', 158 '../tools/skdiff_html.h',
159 '../tools/skdiff_main.cpp', 159 '../tools/skdiff_main.cpp',
160 '../tools/skdiff_utils.cpp', 160 '../tools/skdiff_utils.cpp',
161 '../tools/skdiff_utils.h', 161 '../tools/skdiff_utils.h',
162 ], 162 ],
163 'dependencies': [ 163 'dependencies': [
164 'skia_lib.gyp:skia_lib', 164 'skia_lib.gyp:skia_lib',
165 ], 165 ],
166 'xcode_settings': {
167 'conditions': [
168 [ 'skia_osx_deployment_target==""', {
169 'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacos-version-min, passed in env to ld.
170 }, {
171 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)',
172 }],
173 ],
174 'CLANG_CXX_LIBRARY': 'libc++',
175 },
166 }, 176 },
167 { 177 {
168 'target_name': 'skpdiff', 178 'target_name': 'skpdiff',
169 'type': 'executable', 179 'type': 'executable',
170 'sources': [ 180 'sources': [
171 '../tools/skpdiff/skpdiff_main.cpp', 181 '../tools/skpdiff/skpdiff_main.cpp',
172 '../tools/skpdiff/SkDiffContext.cpp', 182 '../tools/skpdiff/SkDiffContext.cpp',
173 '../tools/skpdiff/SkImageDiffer.cpp', 183 '../tools/skpdiff/SkImageDiffer.cpp',
174 '../tools/skpdiff/SkPMetric.cpp', 184 '../tools/skpdiff/SkPMetric.cpp',
175 '../tools/skpdiff/skpdiff_util.cpp', 185 '../tools/skpdiff/skpdiff_util.cpp',
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 'flags.gyp:flags', 809 'flags.gyp:flags',
800 'skia_lib.gyp:skia_lib', 810 'skia_lib.gyp:skia_lib',
801 'resources', 811 'resources',
802 ], 812 ],
803 }, 813 },
804 ], 814 ],
805 }, 815 },
806 ], 816 ],
807 ], 817 ],
808 } 818 }
OLDNEW
« no previous file with comments | « gyp/sfnt.gyp ('k') | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698