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

Side by Side Diff: core/core.gyp

Issue 652016: Added the bulk of the algorithm for GPU accelerated 2D vector curve... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 10 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 | « DEPS ('k') | core/cross/class_manager.cc » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ], 72 ],
73 'targets': [ 73 'targets': [
74 { 74 {
75 'target_name': 'o3dCore', 75 'target_name': 'o3dCore',
76 'type': 'static_library', 76 'type': 'static_library',
77 'dependencies': [ 77 'dependencies': [
78 '../../<(jpegdir)/libjpeg.gyp:libjpeg', 78 '../../<(jpegdir)/libjpeg.gyp:libjpeg',
79 '../../<(pngdir)/libpng.gyp:libpng', 79 '../../<(pngdir)/libpng.gyp:libpng',
80 '../../<(zlibdir)/zlib.gyp:zlib', 80 '../../<(zlibdir)/zlib.gyp:zlib',
81 '../../skia/skia.gyp:skia', 81 '../../skia/skia.gyp:skia',
82 '../third_party/glu/libtess.gyp:libtess',
82 ], 83 ],
83 'sources': [ 84 'sources': [
84 'cross/bitmap.cc', 85 'cross/bitmap.cc',
85 'cross/bitmap.h', 86 'cross/bitmap.h',
86 'cross/bitmap_dds.cc', 87 'cross/bitmap_dds.cc',
87 'cross/bitmap_jpg.cc', 88 'cross/bitmap_jpg.cc',
88 'cross/bitmap_png.cc', 89 'cross/bitmap_png.cc',
89 'cross/bitmap_tga.cc', 90 'cross/bitmap_tga.cc',
90 'cross/bounding_box.cc', 91 'cross/bounding_box.cc',
91 'cross/bounding_box.h', 92 'cross/bounding_box.h',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'cross/param_cache.h', 201 'cross/param_cache.h',
201 'cross/param_object.cc', 202 'cross/param_object.cc',
202 'cross/param_object.h', 203 'cross/param_object.h',
203 'cross/param_operation.cc', 204 'cross/param_operation.cc',
204 'cross/param_operation.h', 205 'cross/param_operation.h',
205 'cross/performance_timer.h', 206 'cross/performance_timer.h',
206 'cross/precompile.cc', 207 'cross/precompile.cc',
207 'cross/precompile.h', 208 'cross/precompile.h',
208 'cross/primitive.cc', 209 'cross/primitive.cc',
209 'cross/primitive.h', 210 'cross/primitive.h',
211 'cross/processed_path.cc',
212 'cross/processed_path.h',
210 'cross/profiler.cc', 213 'cross/profiler.cc',
211 'cross/profiler.h', 214 'cross/profiler.h',
212 'cross/ray_intersection_info.cc', 215 'cross/ray_intersection_info.cc',
213 'cross/ray_intersection_info.h', 216 'cross/ray_intersection_info.h',
214 'cross/render_context.cc', 217 'cross/render_context.cc',
215 'cross/render_context.h', 218 'cross/render_context.h',
216 'cross/render_event.h', 219 'cross/render_event.h',
217 'cross/render_node.cc', 220 'cross/render_node.cc',
218 'cross/render_node.h', 221 'cross/render_node.h',
219 'cross/render_surface.cc', 222 'cross/render_surface.cc',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'cross/gpu2d/arena.h', 275 'cross/gpu2d/arena.h',
273 'cross/gpu2d/cubic_classifier.cc', 276 'cross/gpu2d/cubic_classifier.cc',
274 'cross/gpu2d/cubic_classifier.h', 277 'cross/gpu2d/cubic_classifier.h',
275 'cross/gpu2d/cubic_math_utils.cc', 278 'cross/gpu2d/cubic_math_utils.cc',
276 'cross/gpu2d/cubic_math_utils.h', 279 'cross/gpu2d/cubic_math_utils.h',
277 'cross/gpu2d/cubic_texture_coords.cc', 280 'cross/gpu2d/cubic_texture_coords.cc',
278 'cross/gpu2d/cubic_texture_coords.h', 281 'cross/gpu2d/cubic_texture_coords.h',
279 'cross/gpu2d/interval_tree.h', 282 'cross/gpu2d/interval_tree.h',
280 'cross/gpu2d/local_triangulator.cc', 283 'cross/gpu2d/local_triangulator.cc',
281 'cross/gpu2d/local_triangulator.h', 284 'cross/gpu2d/local_triangulator.h',
285 'cross/gpu2d/path_cache.cc',
286 'cross/gpu2d/path_cache.h',
287 'cross/gpu2d/path_processor.cc',
288 'cross/gpu2d/path_processor.h',
282 'cross/gpu2d/red_black_tree.h', 289 'cross/gpu2d/red_black_tree.h',
283 ], 290 ],
284 'direct_dependent_settings': { 291 'direct_dependent_settings': {
285 'include_dirs': [ 292 'include_dirs': [
286 '..', 293 '..',
287 ], 294 ],
288 }, 295 },
289 'conditions': [ 296 'conditions': [
290 ['OS == "win"', 297 ['OS == "win"',
291 { 298 {
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 }, 538 },
532 }, 539 },
533 ], 540 ],
534 } 541 }
535 542
536 # Local Variables: 543 # Local Variables:
537 # tab-width:2 544 # tab-width:2
538 # indent-tabs-mode:nil 545 # indent-tabs-mode:nil
539 # End: 546 # End:
540 # vim: set expandtab tabstop=2 shiftwidth=2: 547 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « DEPS ('k') | core/cross/class_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698