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

Side by Side Diff: gyp/tools.gyp

Issue 1726823002: Set SkColorSpace object for PNGs and parse ICC profiles (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Adding comments to the code Created 4 years, 9 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
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 ], 259 ],
260 'include_dirs': [ 260 'include_dirs': [
261 '../include/core', 261 '../include/core',
262 ], 262 ],
263 'dependencies': [ 263 'dependencies': [
264 'flags.gyp:flags', 264 'flags.gyp:flags',
265 'skia_lib.gyp:skia_lib', 265 'skia_lib.gyp:skia_lib',
266 ], 266 ],
267 }, 267 },
268 { 268 {
269 'target_name': 'get_images_from_skps', 269 'target_name': 'get_images_from_skps',
270 'type': 'executable', 270 'type': 'executable',
271 'sources': [ 271 'sources': [
272 '../tools/get_images_from_skps.cpp', 272 '../tools/get_images_from_skps.cpp',
273 ], 273 ],
274 'dependencies': [ 274 'include_dirs': [
275 'flags.gyp:flags', 275 '../src/core',
276 'skia_lib.gyp:skia_lib', 276 ],
277 ], 277 'dependencies': [
278 'flags.gyp:flags',
279 'skia_lib.gyp:skia_lib',
280 ],
278 }, 281 },
279 { 282 {
280 'target_name': 'gpuveto', 283 'target_name': 'gpuveto',
281 'type': 'executable', 284 'type': 'executable',
282 'sources': [ 285 'sources': [
283 '../tools/gpuveto.cpp', 286 '../tools/gpuveto.cpp',
284 ], 287 ],
285 'include_dirs': [ 288 'include_dirs': [
286 '../include/private', 289 '../include/private',
287 '../src/core/', 290 '../src/core/',
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 '<(skia_include_path)/views/SkOSWindow_Mac.h', 485 '<(skia_include_path)/views/SkOSWindow_Mac.h',
483 '<(skia_include_path)/views/SkOSWindow_SDL.h', 486 '<(skia_include_path)/views/SkOSWindow_SDL.h',
484 '<(skia_include_path)/views/SkOSWindow_Unix.h', 487 '<(skia_include_path)/views/SkOSWindow_Unix.h',
485 '<(skia_include_path)/views/SkOSWindow_Win.h', 488 '<(skia_include_path)/views/SkOSWindow_Win.h',
486 '<(skia_include_path)/views/SkWindow.h', 489 '<(skia_include_path)/views/SkWindow.h',
487 '<(skia_include_path)/gpu/vk', 490 '<(skia_include_path)/gpu/vk',
488 ], 491 ],
489 }, 492 },
490 'include_dirs': [ 493 'include_dirs': [
491 '<@(includes_to_test)', 494 '<@(includes_to_test)',
495 '../src/core',
492 ], 496 ],
493 'sources': [ 497 'sources': [
494 # unused_param_test.cpp is generated by the action below. 498 # unused_param_test.cpp is generated by the action below.
495 '<(INTERMEDIATE_DIR)/test_public_includes.cpp', 499 '<(INTERMEDIATE_DIR)/test_public_includes.cpp',
496 ], 500 ],
497 'actions': [ 501 'actions': [
498 { 502 {
499 'action_name': 'generate_includes_cpp', 503 'action_name': 'generate_includes_cpp',
500 'inputs': [ 504 'inputs': [
501 '../tools/generate_includes_cpp.py', 505 '../tools/generate_includes_cpp.py',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 'flags.gyp:flags', 603 'flags.gyp:flags',
600 'skia_lib.gyp:skia_lib', 604 'skia_lib.gyp:skia_lib',
601 'resources', 605 'resources',
602 ], 606 ],
603 }, 607 },
604 ], 608 ],
605 }, 609 },
606 ], 610 ],
607 ], 611 ],
608 } 612 }
OLDNEW
« no previous file with comments | « gyp/codec_android.gyp ('k') | include/codec/SkCodec.h » ('j') | include/codec/SkCodec.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698