OLD | NEW |
---|---|
1 # Core Skia library code. | 1 # Core Skia library code. |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'core', | 5 'target_name': 'core', |
6 'product_name': 'skia_core', | 6 'product_name': 'skia_core', |
7 'type': 'static_library', | 7 'type': 'static_library', |
8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', | 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', |
10 | 10 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 }], | 90 }], |
91 ['skia_gpu == 1', { | 91 ['skia_gpu == 1', { |
92 'include_dirs': [ | 92 'include_dirs': [ |
93 '../include/gpu', | 93 '../include/gpu', |
94 '../src/gpu', | 94 '../src/gpu', |
95 ], | 95 ], |
96 }], | 96 }], |
97 ], | 97 ], |
98 'direct_dependent_settings': { | 98 'direct_dependent_settings': { |
99 'include_dirs': [ | 99 'include_dirs': [ |
100 'config', | |
101 '../include/config', | 100 '../include/config', |
102 '../include/core', | 101 '../include/core', |
103 '../include/lazy', | 102 '../include/lazy', |
mtklein
2014/01/23 00:05:45
include/lazy also doesn't exist. :)
scroggo
2014/01/23 14:09:19
Yay cleanups! Removed.
| |
104 '../include/pathops', | 103 '../include/pathops', |
105 '../include/pipe', | 104 '../include/pipe', |
106 'ext', | |
107 ], | 105 ], |
108 'conditions': [ | 106 'conditions': [ |
109 [ 'skia_os == "mac"', { | 107 [ 'skia_os == "mac"', { |
110 'include_dirs': [ | 108 'include_dirs': [ |
111 '../include/utils/mac', | 109 '../include/utils/mac', |
112 ], | 110 ], |
113 }], | 111 }], |
114 [ 'skia_os == "ios"', { | 112 [ 'skia_os == "ios"', { |
115 'include_dirs': [ | 113 'include_dirs': [ |
116 '../include/utils/ios', | 114 '../include/utils/ios', |
117 ], | 115 ], |
118 }], | 116 }], |
119 [ 'skia_os == "win"', { | 117 [ 'skia_os == "win"', { |
120 'include_dirs': [ | 118 'include_dirs': [ |
121 'config/win', | 119 'config/win', |
122 ], | 120 ], |
123 }], | 121 }], |
124 ], | 122 ], |
125 }, | 123 }, |
126 }, | 124 }, |
127 ], | 125 ], |
128 } | 126 } |
OLD | NEW |