| 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 flag parser | 5 # GYP file to build flag parser |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'flags', | 10 'target_name': 'flags', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 '../tools/flags', | 25 '../tools/flags', |
| 26 ], | 26 ], |
| 27 } | 27 } |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 'target_name': 'flags_common', | 30 'target_name': 'flags_common', |
| 31 'type': 'static_library', | 31 'type': 'static_library', |
| 32 'sources': [ | 32 'sources': [ |
| 33 '../tools/flags/SkCommonFlags.cpp', | 33 '../tools/flags/SkCommonFlags.cpp', |
| 34 '../tools/flags/SkCommonFlags.h', | 34 '../tools/flags/SkCommonFlags.h', |
| 35 '../tools/flags/SkCommonFlagsConfig.cpp', |
| 36 '../tools/flags/SkCommonFlagsConfig.h', |
| 35 ], | 37 ], |
| 36 'dependencies': [ | 38 'dependencies': [ |
| 37 'skia_lib.gyp:skia_lib', | 39 'skia_lib.gyp:skia_lib', |
| 38 'flags.gyp:flags', | 40 'flags.gyp:flags', |
| 39 ], | 41 ], |
| 40 'direct_dependent_settings': { | 42 'direct_dependent_settings': { |
| 41 'include_dirs': [ | 43 'include_dirs': [ |
| 42 '../tools/flags', | 44 '../tools/flags', |
| 43 ], | 45 ], |
| 44 } | 46 } |
| 45 }, | 47 }, |
| 46 ], | 48 ], |
| 47 } | 49 } |
| OLD | NEW |