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': [ | 12 'include_dirs': [ |
13 '../include/private', | 13 '../include/private', |
14 '../src/core', | 14 '../src/core', |
15 ], | 15 ], |
16 'sources': [ | 16 'sources': [ |
17 '../tools/flags/SkCommandLineFlags.cpp', | 17 '../tools/flags/SkCommandLineFlags.cpp', |
18 '../tools/flags/SkCommandLineFlags.h', | 18 '../tools/flags/SkCommandLineFlags.h', |
19 ], | 19 ], |
20 'dependencies': [ | 20 'dependencies': [ |
21 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
| 22 'gputest.gyp:skgputest', |
22 ], | 23 ], |
23 'direct_dependent_settings': { | 24 'direct_dependent_settings': { |
24 'include_dirs': [ | 25 'include_dirs': [ |
25 '../tools/flags', | 26 '../tools/flags', |
26 ], | 27 ], |
27 } | 28 } |
28 }, | 29 }, |
29 { | 30 { |
30 'target_name': 'flags_common', | 31 'target_name': 'flags_common', |
31 'type': 'static_library', | 32 'type': 'static_library', |
(...skipping 16 matching lines...) Expand all Loading... |
48 'include_dirs': [ | 49 'include_dirs': [ |
49 '../include/gpu', | 50 '../include/gpu', |
50 '../include/private', | 51 '../include/private', |
51 '../src/gpu', | 52 '../src/gpu', |
52 '../tools/flags', | 53 '../tools/flags', |
53 ], | 54 ], |
54 } | 55 } |
55 }, | 56 }, |
56 ], | 57 ], |
57 } | 58 } |
OLD | NEW |