| OLD | NEW |
| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 ], | 257 ], |
| 258 'include_dirs': [ | 258 'include_dirs': [ |
| 259 '../include/core', | 259 '../include/core', |
| 260 ], | 260 ], |
| 261 'dependencies': [ | 261 'dependencies': [ |
| 262 'flags.gyp:flags', | 262 'flags.gyp:flags', |
| 263 'skia_lib.gyp:skia_lib', | 263 'skia_lib.gyp:skia_lib', |
| 264 ], | 264 ], |
| 265 }, | 265 }, |
| 266 { | 266 { |
| 267 'target_name': 'get_images_from_skps', | 267 'target_name': 'get_images_from_skps', |
| 268 'type': 'executable', | 268 'type': 'executable', |
| 269 'sources': [ | 269 'sources': [ |
| 270 '../tools/get_images_from_skps.cpp', | 270 '../tools/get_images_from_skps.cpp', |
| 271 ], | 271 ], |
| 272 'include_dirs': [ | 272 'include_dirs': [ |
| 273 '../include/private', | 273 '../src/core', |
| 274 '../src/core', | 274 '../include/private', |
| 275 ], | 275 ], |
| 276 'dependencies': [ | 276 'dependencies': [ |
| 277 'flags.gyp:flags', | 277 'flags.gyp:flags', |
| 278 'skia_lib.gyp:skia_lib', | 278 'skia_lib.gyp:skia_lib', |
| 279 ], | 279 ], |
| 280 }, | 280 }, |
| 281 { | 281 { |
| 282 'target_name': 'gpuveto', | 282 'target_name': 'gpuveto', |
| 283 'type': 'executable', | 283 'type': 'executable', |
| 284 'sources': [ | 284 'sources': [ |
| 285 '../tools/gpuveto.cpp', | 285 '../tools/gpuveto.cpp', |
| 286 ], | 286 ], |
| 287 'include_dirs': [ | 287 'include_dirs': [ |
| 288 '../include/private', | 288 '../include/private', |
| 289 '../src/core/', | 289 '../src/core/', |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 '<(skia_include_path)/views/SkOSWindow_Mac.h', | 462 '<(skia_include_path)/views/SkOSWindow_Mac.h', |
| 463 '<(skia_include_path)/views/SkOSWindow_SDL.h', | 463 '<(skia_include_path)/views/SkOSWindow_SDL.h', |
| 464 '<(skia_include_path)/views/SkOSWindow_Unix.h', | 464 '<(skia_include_path)/views/SkOSWindow_Unix.h', |
| 465 '<(skia_include_path)/views/SkOSWindow_Win.h', | 465 '<(skia_include_path)/views/SkOSWindow_Win.h', |
| 466 '<(skia_include_path)/views/SkWindow.h', | 466 '<(skia_include_path)/views/SkWindow.h', |
| 467 '<(skia_include_path)/gpu/vk', | 467 '<(skia_include_path)/gpu/vk', |
| 468 ], | 468 ], |
| 469 }, | 469 }, |
| 470 'include_dirs': [ | 470 'include_dirs': [ |
| 471 '<@(includes_to_test)', | 471 '<@(includes_to_test)', |
| 472 '../src/core', |
| 472 ], | 473 ], |
| 473 'sources': [ | 474 'sources': [ |
| 474 # unused_param_test.cpp is generated by the action below. | 475 # unused_param_test.cpp is generated by the action below. |
| 475 '<(INTERMEDIATE_DIR)/test_public_includes.cpp', | 476 '<(INTERMEDIATE_DIR)/test_public_includes.cpp', |
| 476 ], | 477 ], |
| 477 'actions': [ | 478 'actions': [ |
| 478 { | 479 { |
| 479 'action_name': 'generate_includes_cpp', | 480 'action_name': 'generate_includes_cpp', |
| 480 'inputs': [ | 481 'inputs': [ |
| 481 '../tools/generate_includes_cpp.py', | 482 '../tools/generate_includes_cpp.py', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 'flags.gyp:flags', | 580 'flags.gyp:flags', |
| 580 'skia_lib.gyp:skia_lib', | 581 'skia_lib.gyp:skia_lib', |
| 581 'resources', | 582 'resources', |
| 582 ], | 583 ], |
| 583 }, | 584 }, |
| 584 ], | 585 ], |
| 585 }, | 586 }, |
| 586 ], | 587 ], |
| 587 ], | 588 ], |
| 588 } | 589 } |
| OLD | NEW |