| OLD | NEW |
| 1 # Copyright 2015 Google Inc. |
| 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 1 # Building test for running CanvasState | 5 # Building test for running CanvasState |
| 2 | 6 |
| 3 # HOW TO USE: | 7 # HOW TO USE: |
| 4 # This target is not included in normal Skia builds. In order to build it, | 8 # This target is not included in normal Skia builds. In order to build it, |
| 5 # you need to run gyp_skia on this file. This target also requires the | 9 # you need to run gyp_skia on this file. This target also requires the |
| 6 # variable skia_pic to be used during building: | 10 # variable skia_pic to be used during building: |
| 7 # | 11 # |
| 8 # GYP_DEFINES=skia_pic=1 ./gyp_skia gyp/canvas_state_lib.gyp | 12 # GYP_DEFINES=skia_pic=1 ./gyp_skia gyp/canvas_state_lib.gyp |
| 9 # ninja -C out/Debug canvas_state_lib | 13 # ninja -C out/Debug canvas_state_lib |
| 10 # | 14 # |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 { | 32 { |
| 29 # Dummy 'most' target, since gyp_skia sets 'most' to be the default. | 33 # Dummy 'most' target, since gyp_skia sets 'most' to be the default. |
| 30 'target_name' : 'most', | 34 'target_name' : 'most', |
| 31 'type' : 'none', | 35 'type' : 'none', |
| 32 'dependencies' : [ | 36 'dependencies' : [ |
| 33 'canvas_state_lib', | 37 'canvas_state_lib', |
| 34 ], | 38 ], |
| 35 } | 39 } |
| 36 ], | 40 ], |
| 37 } | 41 } |
| OLD | NEW |