| 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 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
| 11 # variables and defines should go in skia_common.gypi so they can be seen | 11 # variables and defines should go in skia_common.gypi so they can be seen |
| 12 # by files listed here and in skia_library_opts.gypi. | 12 # by files listed here and in skia_library_opts.gypi. |
| 13 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 13 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
| 14 { | 14 { |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'skia_library_opts.gyp:skia_opts', | 16 'skia_library_opts.gyp:skia_opts', |
| 17 '../third_party/zlib/zlib.gyp:zlib', | 17 '../third_party/zlib/zlib.gyp:zlib', |
| 18 ], | 18 ], |
| 19 | 19 |
| 20 'includes': [ | 20 'includes': [ |
| 21 '../third_party/skia/gyp/core.gypi', | 21 '../third_party/skia/gyp/core.gypi', |
| 22 '../third_party/skia/gyp/effects.gypi', | 22 '../third_party/skia/gyp/effects.gypi', |
| 23 '../third_party/skia/gyp/pdf.gypi', | 23 '../third_party/skia/gyp/pdf.gypi', |
| 24 '../third_party/skia/gyp/record.gypi', | |
| 25 '../third_party/skia/gyp/utils.gypi', | 24 '../third_party/skia/gyp/utils.gypi', |
| 26 ], | 25 ], |
| 27 | 26 |
| 28 'sources': [ | 27 'sources': [ |
| 29 # this should likely be moved into src/utils in skia | 28 # this should likely be moved into src/utils in skia |
| 30 '../third_party/skia/src/core/SkFlate.cpp', | 29 '../third_party/skia/src/core/SkFlate.cpp', |
| 31 | 30 |
| 32 '../third_party/skia/src/ports/SkImageDecoder_empty.cpp', | 31 '../third_party/skia/src/ports/SkImageDecoder_empty.cpp', |
| 33 '../third_party/skia/src/images/SkScaledBitmapSampler.cpp', | 32 '../third_party/skia/src/images/SkScaledBitmapSampler.cpp', |
| 34 '../third_party/skia/src/images/SkScaledBitmapSampler.h', | 33 '../third_party/skia/src/images/SkScaledBitmapSampler.h', |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 '../third_party/skia/include/pdf', | 375 '../third_party/skia/include/pdf', |
| 377 '../third_party/skia/include/gpu', | 376 '../third_party/skia/include/gpu', |
| 378 '../third_party/skia/include/lazy', | 377 '../third_party/skia/include/lazy', |
| 379 '../third_party/skia/include/pathops', | 378 '../third_party/skia/include/pathops', |
| 380 '../third_party/skia/include/pipe', | 379 '../third_party/skia/include/pipe', |
| 381 '../third_party/skia/include/ports', | 380 '../third_party/skia/include/ports', |
| 382 '../third_party/skia/include/utils', | 381 '../third_party/skia/include/utils', |
| 383 ], | 382 ], |
| 384 }, | 383 }, |
| 385 } | 384 } |
| OLD | NEW |