| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 }, | 94 }, |
| 95 { | 95 { |
| 96 'target_name': 'sk_tool_utils', | 96 'target_name': 'sk_tool_utils', |
| 97 'type': 'static_library', | 97 'type': 'static_library', |
| 98 'sources': [ | 98 'sources': [ |
| 99 '../tools/sk_tool_utils.cpp', | 99 '../tools/sk_tool_utils.cpp', |
| 100 '../tools/sk_tool_utils_font.cpp', | 100 '../tools/sk_tool_utils_font.cpp', |
| 101 ], | 101 ], |
| 102 'include_dirs': [ | 102 'include_dirs': [ |
| 103 '../src/fonts', | 103 '../src/fonts', |
| 104 '../src/core', | |
| 105 ], | 104 ], |
| 106 'dependencies': [ | 105 'dependencies': [ |
| 107 'resources', | 106 'resources', |
| 108 'flags.gyp:flags', | 107 'flags.gyp:flags', |
| 109 'skia_lib.gyp:skia_lib', | 108 'skia_lib.gyp:skia_lib', |
| 110 ], | 109 ], |
| 111 'direct_dependent_settings': { | 110 'direct_dependent_settings': { |
| 112 'include_dirs': [ '../tools', ], | 111 'include_dirs': [ '../tools', ], |
| 113 }, | 112 }, |
| 114 }, | 113 }, |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 'flags.gyp:flags', | 809 'flags.gyp:flags', |
| 811 'skia_lib.gyp:skia_lib', | 810 'skia_lib.gyp:skia_lib', |
| 812 'resources', | 811 'resources', |
| 813 ], | 812 ], |
| 814 }, | 813 }, |
| 815 ], | 814 ], |
| 816 }, | 815 }, |
| 817 ], | 816 ], |
| 818 ], | 817 ], |
| 819 } | 818 } |
| OLD | NEW |