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

Side by Side Diff: cc/cc.gyp

Issue 131893003: Skeleton surface interfaces in cc/surfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add base and ui/gfx deps to fix win/mac component link Created 6 years, 11 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 | « cc/DEPS ('k') | cc/cc_tests.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'cc', 11 'target_name': 'cc',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/gpu/gpu.gyp:gpu', 16 '<(DEPTH)/gpu/gpu.gyp:gpu',
17 '<(DEPTH)/media/media.gyp:media', 17 '<(DEPTH)/media/media.gyp:media',
18 '<(DEPTH)/skia/skia.gyp:skia', 18 '<(DEPTH)/skia/skia.gyp:skia',
19 '<(DEPTH)/ui/events/events.gyp:events_base', 19 '<(DEPTH)/ui/events/events.gyp:events_base',
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
22 '<(DEPTH)/ui/gl/gl.gyp:gl', 22 '<(DEPTH)/ui/gl/gl.gyp:gl',
23 ], 23 ],
24 'export_dependent_settings': [
25 '<(DEPTH)/skia/skia.gyp:skia',
26 ],
24 'defines': [ 27 'defines': [
25 'CC_IMPLEMENTATION=1', 28 'CC_IMPLEMENTATION=1',
26 ], 29 ],
27 'sources': [ 30 'sources': [
28 'animation/animation.cc', 31 'animation/animation.cc',
29 'animation/animation.h', 32 'animation/animation.h',
30 'animation/animation_curve.cc', 33 'animation/animation_curve.cc',
31 'animation/animation_curve.h', 34 'animation/animation_curve.h',
32 'animation/animation_delegate.h', 35 'animation/animation_delegate.h',
33 'animation/animation_events.cc', 36 'animation/animation_events.cc',
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 'trees/single_thread_proxy.cc', 438 'trees/single_thread_proxy.cc',
436 'trees/single_thread_proxy.h', 439 'trees/single_thread_proxy.h',
437 'trees/thread_proxy.cc', 440 'trees/thread_proxy.cc',
438 'trees/thread_proxy.h', 441 'trees/thread_proxy.h',
439 'trees/tree_synchronizer.cc', 442 'trees/tree_synchronizer.cc',
440 'trees/tree_synchronizer.h', 443 'trees/tree_synchronizer.h',
441 ], 444 ],
442 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
443 'msvs_disabled_warnings': [ 4267, ], 446 'msvs_disabled_warnings': [ 4267, ],
444 }, 447 },
448 {
449 'target_name': 'cc_surfaces',
450 'type': '<(component)',
451 'dependencies': [
452 'cc',
453 '<(DEPTH)/base/base.gyp:base',
454 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
455 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
456 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
457 ],
458 'defines': [
459 'CC_SURFACES_IMPLEMENTATION=1',
460 ],
461 'sources': [
462 'surfaces/surface.cc',
463 'surfaces/surface.h',
464 'surfaces/surface_manager.cc',
465 'surfaces/surface_manager.h',
466 'surfaces/surfaces_export.h',
467 ],
468 },
445 ], 469 ],
446 } 470 }
OLDNEW
« no previous file with comments | « cc/DEPS ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698