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

Side by Side Diff: skia/skia_library.gypi

Issue 225023031: Hack SkRecord in as an alternate recording mode in cc/resources/picture. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 6 years, 7 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
« no previous file with comments | « cc/resources/picture_unittest.cc ('k') | tools/perf/measurements/rasterize_and_record_micro.py » ('j') | 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 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!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',
24 ], 25 ],
25 26
26 'sources': [ 27 'sources': [
27 # this should likely be moved into src/utils in skia 28 # this should likely be moved into src/utils in skia
28 '../third_party/skia/src/core/SkFlate.cpp', 29 '../third_party/skia/src/core/SkFlate.cpp',
29 '../third_party/skia/src/core/SkPaintOptionsAndroid.cpp', 30 '../third_party/skia/src/core/SkPaintOptionsAndroid.cpp',
30 31
31 '../third_party/skia/src/ports/SkImageDecoder_empty.cpp', 32 '../third_party/skia/src/ports/SkImageDecoder_empty.cpp',
32 '../third_party/skia/src/images/SkScaledBitmapSampler.cpp', 33 '../third_party/skia/src/images/SkScaledBitmapSampler.cpp',
33 '../third_party/skia/src/images/SkScaledBitmapSampler.h', 34 '../third_party/skia/src/images/SkScaledBitmapSampler.h',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ], 121 ],
121 'include_dirs': [ 122 'include_dirs': [
122 '../third_party/skia/include/core', 123 '../third_party/skia/include/core',
123 '../third_party/skia/include/effects', 124 '../third_party/skia/include/effects',
124 '../third_party/skia/include/images', 125 '../third_party/skia/include/images',
125 '../third_party/skia/include/lazy', 126 '../third_party/skia/include/lazy',
126 '../third_party/skia/include/pathops', 127 '../third_party/skia/include/pathops',
127 '../third_party/skia/include/pdf', 128 '../third_party/skia/include/pdf',
128 '../third_party/skia/include/pipe', 129 '../third_party/skia/include/pipe',
129 '../third_party/skia/include/ports', 130 '../third_party/skia/include/ports',
131 '../third_party/skia/include/record',
130 '../third_party/skia/include/utils', 132 '../third_party/skia/include/utils',
131 '../third_party/skia/src/core', 133 '../third_party/skia/src/core',
132 '../third_party/skia/src/opts', 134 '../third_party/skia/src/opts',
133 '../third_party/skia/src/image', 135 '../third_party/skia/src/image',
134 '../third_party/skia/src/ports', 136 '../third_party/skia/src/ports',
135 '../third_party/skia/src/sfnt', 137 '../third_party/skia/src/sfnt',
136 '../third_party/skia/src/utils', 138 '../third_party/skia/src/utils',
137 '../third_party/skia/src/lazy', 139 '../third_party/skia/src/lazy',
138 ], 140 ],
139 'conditions': [ 141 'conditions': [
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 '../third_party/skia/include/pdf', 342 '../third_party/skia/include/pdf',
341 '../third_party/skia/include/gpu', 343 '../third_party/skia/include/gpu',
342 '../third_party/skia/include/lazy', 344 '../third_party/skia/include/lazy',
343 '../third_party/skia/include/pathops', 345 '../third_party/skia/include/pathops',
344 '../third_party/skia/include/pipe', 346 '../third_party/skia/include/pipe',
345 '../third_party/skia/include/ports', 347 '../third_party/skia/include/ports',
346 '../third_party/skia/include/utils', 348 '../third_party/skia/include/utils',
347 ], 349 ],
348 }, 350 },
349 } 351 }
OLDNEW
« no previous file with comments | « cc/resources/picture_unittest.cc ('k') | tools/perf/measurements/rasterize_and_record_micro.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698