| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 }, | 112 }, |
| 113 }, | 113 }, |
| 114 { | 114 { |
| 115 'target_name' : 'timer', | 115 'target_name' : 'timer', |
| 116 'type': 'static_library', | 116 'type': 'static_library', |
| 117 'sources': [ | 117 'sources': [ |
| 118 '../tools/timer/Timer.cpp', | 118 '../tools/timer/Timer.cpp', |
| 119 '../tools/timer/TimerData.cpp', | 119 '../tools/timer/TimerData.cpp', |
| 120 ], | 120 ], |
| 121 'include_dirs': [ | 121 'include_dirs': [ |
| 122 '../include/private', |
| 122 '../src/core', | 123 '../src/core', |
| 123 '../src/gpu', | 124 '../src/gpu', |
| 124 ], | 125 ], |
| 125 'direct_dependent_settings': { | 126 'direct_dependent_settings': { |
| 126 'include_dirs': ['../tools/timer'], | 127 'include_dirs': ['../tools/timer'], |
| 127 }, | 128 }, |
| 128 'dependencies': [ | 129 'dependencies': [ |
| 129 'skia_lib.gyp:skia_lib', | 130 'skia_lib.gyp:skia_lib', |
| 130 'jsoncpp.gyp:jsoncpp', | 131 'jsoncpp.gyp:jsoncpp', |
| 131 ], | 132 ], |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 'flags.gyp:flags', | 784 'flags.gyp:flags', |
| 784 'skia_lib.gyp:skia_lib', | 785 'skia_lib.gyp:skia_lib', |
| 785 'resources', | 786 'resources', |
| 786 ], | 787 ], |
| 787 }, | 788 }, |
| 788 ], | 789 ], |
| 789 }, | 790 }, |
| 790 ], | 791 ], |
| 791 ], | 792 ], |
| 792 } | 793 } |
| OLD | NEW |