Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: skia/skia_library.gypi

Issue 22736003: skia: remove gpu/gl from include path. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698