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 # Core Skia library code. | 5 # Core Skia library code. |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'core', | 9 'target_name': 'core', |
10 'product_name': 'skia_core', | 10 'product_name': 'skia_core', |
(...skipping 11 matching lines...) Expand all Loading... |
22 '../include/core', | 22 '../include/core', |
23 '../include/pathops', | 23 '../include/pathops', |
24 '../include/ports', | 24 '../include/ports', |
25 '../include/private', | 25 '../include/private', |
26 '../include/utils', | 26 '../include/utils', |
27 '../include/images', | 27 '../include/images', |
28 '../src/core', | 28 '../src/core', |
29 '../src/sfnt', | 29 '../src/sfnt', |
30 '../src/image', | 30 '../src/image', |
31 '../src/opts', | 31 '../src/opts', |
| 32 '../src/pipe', |
32 '../src/utils', | 33 '../src/utils', |
33 ], | 34 ], |
34 'sources': [ | 35 'sources': [ |
35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). | 36 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). |
36 ], | 37 ], |
37 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 38 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
38 'conditions': [ | 39 'conditions': [ |
39 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 40 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
40 'link_settings': { | 41 'link_settings': { |
41 'libraries': [ | 42 'libraries': [ |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 [ 'skia_os == "win"', { | 116 [ 'skia_os == "win"', { |
116 'include_dirs': [ | 117 'include_dirs': [ |
117 'config/win', | 118 'config/win', |
118 ], | 119 ], |
119 }], | 120 }], |
120 ], | 121 ], |
121 }, | 122 }, |
122 }, | 123 }, |
123 ], | 124 ], |
124 } | 125 } |
OLD | NEW |