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

Side by Side Diff: gyp/tools.gyp

Issue 2464903002: Add missing sk_tool_utils flags_common dependency (Closed)
Patch Set: Created 4 years, 1 month 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 | no next file » | 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 '../tools/random_parse_path.cpp', 175 '../tools/random_parse_path.cpp',
176 ], 176 ],
177 'include_dirs': [ 177 'include_dirs': [
178 '../include/private', 178 '../include/private',
179 '../src/fonts', 179 '../src/fonts',
180 '../src/core', 180 '../src/core',
181 ], 181 ],
182 'dependencies': [ 182 'dependencies': [
183 'resources', 183 'resources',
184 'flags.gyp:flags', 184 'flags.gyp:flags',
185 'flags.gyp:flags_common',
185 'skia_lib.gyp:skia_lib', 186 'skia_lib.gyp:skia_lib',
186 ], 187 ],
187 'direct_dependent_settings': { 188 'direct_dependent_settings': {
188 'include_dirs': [ '../tools', ], 189 'include_dirs': [ '../tools', ],
189 }, 190 },
190 }, 191 },
191 { 192 {
192 'target_name' : 'timer', 193 'target_name' : 'timer',
193 'type': 'static_library', 194 'type': 'static_library',
194 'sources': [ '../tools/timer/Timer.cpp' ], 195 'sources': [ '../tools/timer/Timer.cpp' ],
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 'pdf.gyp:pdf', 700 'pdf.gyp:pdf',
700 'gputest.gyp:osmesa', 701 'gputest.gyp:osmesa',
701 ], 702 ],
702 'defines': [ 'FIDDLE_BUILD_TEST' ], 703 'defines': [ 'FIDDLE_BUILD_TEST' ],
703 }, 704 },
704 ], 705 ],
705 }, 706 },
706 ], 707 ],
707 ], 708 ],
708 } 709 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698