Chromium Code Reviews| 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!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 123 '../third_party/skia/src/utils', | 123 '../third_party/skia/src/utils', |
| 124 '../third_party/skia/src/lazy', | 124 '../third_party/skia/src/lazy', |
| 125 ], | 125 ], |
| 126 'conditions': [ | 126 'conditions': [ |
| 127 ['skia_support_gpu != 0', { | 127 ['skia_support_gpu != 0', { |
| 128 'includes': [ | 128 'includes': [ |
| 129 '../third_party/skia/gyp/gpu.gypi', | 129 '../third_party/skia/gyp/gpu.gypi', |
| 130 ], | 130 ], |
| 131 'sources': [ | 131 'sources': [ |
| 132 '<@(skgpu_sources)', | 132 '<@(skgpu_sources)', |
| 133 '<@(skgpu_null_gl_sources)', | |
|
reveman
2014/01/03 23:29:55
what is this for?
alokp
2014/01/03 23:56:16
To pick up the implementation for GrGLCreateNullIn
| |
| 133 ], | 134 ], |
| 134 'include_dirs': [ | 135 'include_dirs': [ |
| 135 '../third_party/skia/include/gpu', | 136 '../third_party/skia/include/gpu', |
| 136 '../third_party/skia/src/gpu', | 137 '../third_party/skia/src/gpu', |
| 137 ], | 138 ], |
| 138 }], | 139 }], |
| 139 ['skia_support_pdf == 0', { | 140 ['skia_support_pdf == 0', { |
| 140 'sources/': [ | 141 'sources/': [ |
| 141 ['exclude', '../third_party/skia/src/pdf/'] | 142 ['exclude', '../third_party/skia/src/pdf/'] |
| 142 ], | 143 ], |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 322 '../third_party/skia/include/pdf', | 323 '../third_party/skia/include/pdf', |
| 323 '../third_party/skia/include/gpu', | 324 '../third_party/skia/include/gpu', |
| 324 '../third_party/skia/include/lazy', | 325 '../third_party/skia/include/lazy', |
| 325 '../third_party/skia/include/pathops', | 326 '../third_party/skia/include/pathops', |
| 326 '../third_party/skia/include/pipe', | 327 '../third_party/skia/include/pipe', |
| 327 '../third_party/skia/include/ports', | 328 '../third_party/skia/include/ports', |
| 328 '../third_party/skia/include/utils', | 329 '../third_party/skia/include/utils', |
| 329 ], | 330 ], |
| 330 }, | 331 }, |
| 331 } | 332 } |
| OLD | NEW |