| 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 13 matching lines...) Expand all Loading... |
| 24 'include_dirs': [ | 24 'include_dirs': [ |
| 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 'include_dirs': [ | 32 'include_dirs': [ |
| 33 '../include/gpu', | 33 '../include/gpu', |
| 34 '../include/private', |
| 34 '../src/gpu', | 35 '../src/gpu', |
| 35 ], | 36 ], |
| 36 'sources': [ | 37 'sources': [ |
| 37 '../tools/flags/SkCommonFlags.cpp', | 38 '../tools/flags/SkCommonFlags.cpp', |
| 38 '../tools/flags/SkCommonFlags.h', | 39 '../tools/flags/SkCommonFlags.h', |
| 39 '../tools/flags/SkCommonFlagsConfig.cpp', | 40 '../tools/flags/SkCommonFlagsConfig.cpp', |
| 40 '../tools/flags/SkCommonFlagsConfig.h', | 41 '../tools/flags/SkCommonFlagsConfig.h', |
| 41 ], | 42 ], |
| 42 'dependencies': [ | 43 'dependencies': [ |
| 43 'skia_lib.gyp:skia_lib', | 44 'skia_lib.gyp:skia_lib', |
| 44 'flags.gyp:flags', | 45 'flags.gyp:flags', |
| 45 ], | 46 ], |
| 46 'direct_dependent_settings': { | 47 'direct_dependent_settings': { |
| 47 'include_dirs': [ | 48 'include_dirs': [ |
| 48 '../include/gpu', | 49 '../include/gpu', |
| 50 '../include/private', |
| 49 '../src/gpu', | 51 '../src/gpu', |
| 50 '../tools/flags', | 52 '../tools/flags', |
| 51 ], | 53 ], |
| 52 } | 54 } |
| 53 }, | 55 }, |
| 54 ], | 56 ], |
| 55 } | 57 } |
| OLD | NEW |