| 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', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'include_dirs': [ '../src/core', ], | 12 'include_dirs': [ |
| 13 '../include/private', |
| 14 '../src/core', |
| 15 ], |
| 13 'sources': [ | 16 'sources': [ |
| 14 '../tools/flags/SkCommandLineFlags.cpp', | 17 '../tools/flags/SkCommandLineFlags.cpp', |
| 15 '../tools/flags/SkCommandLineFlags.h', | 18 '../tools/flags/SkCommandLineFlags.h', |
| 16 ], | 19 ], |
| 17 'dependencies': [ | 20 'dependencies': [ |
| 18 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
| 19 ], | 22 ], |
| 20 'direct_dependent_settings': { | 23 'direct_dependent_settings': { |
| 21 'include_dirs': [ | 24 'include_dirs': [ |
| 22 '../tools/flags', | 25 '../tools/flags', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 'flags.gyp:flags', | 38 'flags.gyp:flags', |
| 36 ], | 39 ], |
| 37 'direct_dependent_settings': { | 40 'direct_dependent_settings': { |
| 38 'include_dirs': [ | 41 'include_dirs': [ |
| 39 '../tools/flags', | 42 '../tools/flags', |
| 40 ], | 43 ], |
| 41 } | 44 } |
| 42 }, | 45 }, |
| 43 ], | 46 ], |
| 44 } | 47 } |
| OLD | NEW |