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

Side by Side Diff: gyp/tools.gyp

Issue 1901113002: Move DM png code to picture_utils, for use by other tools. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Move to picture_utils. Better fit, fewer dependencies when adding to skiaserve Created 4 years, 8 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/dm.gypi ('k') | tools/picture_utils.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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 'skia_lib.gyp:skia_lib', 344 'skia_lib.gyp:skia_lib',
345 ], 345 ],
346 }, 346 },
347 { 347 {
348 'target_name': 'picture_utils', 348 'target_name': 'picture_utils',
349 'type': 'static_library', 349 'type': 'static_library',
350 'sources': [ 350 'sources': [
351 '../tools/picture_utils.cpp', 351 '../tools/picture_utils.cpp',
352 '../tools/picture_utils.h', 352 '../tools/picture_utils.h',
353 ], 353 ],
354 'include_dirs': [
355 '../src/core/',
356 ],
354 'dependencies': [ 357 'dependencies': [
355 'skia_lib.gyp:skia_lib', 358 'skia_lib.gyp:skia_lib',
356 ], 359 ],
357 'direct_dependent_settings': { 360 'direct_dependent_settings': {
358 'include_dirs': [ 361 'include_dirs': [
359 '../tools/', 362 '../tools/',
360 ], 363 ],
361 }, 364 },
362 }, 365 },
363 { 366 {
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 'pdf.gyp:pdf', 610 'pdf.gyp:pdf',
608 ], 611 ],
609 'defines': [ 'FIDDLE_BUILD_TEST' ], 612 'defines': [ 'FIDDLE_BUILD_TEST' ],
610 'link_settings': { 'libraries': [ '-lOSMesa' ], }, 613 'link_settings': { 'libraries': [ '-lOSMesa' ], },
611 }, 614 },
612 ], 615 ],
613 }, 616 },
614 ], 617 ],
615 ], 618 ],
616 } 619 }
OLDNEW
« no previous file with comments | « gyp/dm.gypi ('k') | tools/picture_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698