OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 # This gypi file contains the Skia library. | 6 # This gypi file contains the Skia library. |
7 # In component mode (shared_lib) it is folded into a single shared library with | 7 # In component mode (shared_lib) it is folded into a single shared library with |
8 # the Chrome-specific enhancements but in all other cases it is a separate lib. | 8 # the Chrome-specific enhancements but in all other cases it is a separate lib. |
9 { | 9 { |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'conditions': [ | 192 'conditions': [ |
193 ['skia_support_gpu != 0', { | 193 ['skia_support_gpu != 0', { |
194 'includes': [ | 194 'includes': [ |
195 '../third_party/skia/gyp/gpu.gypi', | 195 '../third_party/skia/gyp/gpu.gypi', |
196 ], | 196 ], |
197 'sources': [ | 197 'sources': [ |
198 '<@(skgpu_sources)', | 198 '<@(skgpu_sources)', |
199 ], | 199 ], |
200 'include_dirs': [ | 200 'include_dirs': [ |
201 '../third_party/skia/include/gpu', | 201 '../third_party/skia/include/gpu', |
202 '../third_party/skia/include/gpu/gl', | |
203 '../third_party/skia/src/gpu', | 202 '../third_party/skia/src/gpu', |
204 ], | 203 ], |
205 }], | 204 }], |
206 ['skia_support_pdf == 0', { | 205 ['skia_support_pdf == 0', { |
207 'sources/': [ | 206 'sources/': [ |
208 ['exclude', '../third_party/skia/src/pdf/'] | 207 ['exclude', '../third_party/skia/src/pdf/'] |
209 ], | 208 ], |
210 }], | 209 }], |
211 ['skia_support_pdf == 1', { | 210 ['skia_support_pdf == 1', { |
212 'dependencies': [ | 211 'dependencies': [ |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 'include_dirs': [ | 452 'include_dirs': [ |
454 #temporary until we can hide SkFontHost | 453 #temporary until we can hide SkFontHost |
455 '../third_party/skia/src/core', | 454 '../third_party/skia/src/core', |
456 | 455 |
457 'config', | 456 'config', |
458 '../third_party/skia/include/config', | 457 '../third_party/skia/include/config', |
459 '../third_party/skia/include/core', | 458 '../third_party/skia/include/core', |
460 '../third_party/skia/include/effects', | 459 '../third_party/skia/include/effects', |
461 '../third_party/skia/include/pdf', | 460 '../third_party/skia/include/pdf', |
462 '../third_party/skia/include/gpu', | 461 '../third_party/skia/include/gpu', |
463 '../third_party/skia/include/gpu/gl', | |
464 '../third_party/skia/include/lazy', | 462 '../third_party/skia/include/lazy', |
465 '../third_party/skia/include/pathops', | 463 '../third_party/skia/include/pathops', |
466 '../third_party/skia/include/pipe', | 464 '../third_party/skia/include/pipe', |
467 '../third_party/skia/include/ports', | 465 '../third_party/skia/include/ports', |
468 '../third_party/skia/include/utils', | 466 '../third_party/skia/include/utils', |
469 ], | 467 ], |
470 'defines': [ | 468 'defines': [ |
471 '<@(skia_export_defines)', | 469 '<@(skia_export_defines)', |
472 ], | 470 ], |
473 }, | 471 }, |
474 } | 472 } |
OLD | NEW |