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

Side by Side Diff: cc/cc.gyp

Issue 139763003: Initial surface aggregator implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use less advanced struct initialization syntax Created 6 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 | « no previous file | 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 {
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 451 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
452 'msvs_disabled_warnings': [ 4267, ], 452 'msvs_disabled_warnings': [ 4267, ],
453 }, 453 },
454 { 454 {
455 'target_name': 'cc_surfaces', 455 'target_name': 'cc_surfaces',
456 'type': '<(component)', 456 'type': '<(component)',
457 'dependencies': [ 457 'dependencies': [
458 'cc', 458 'cc',
459 '<(DEPTH)/base/base.gyp:base', 459 '<(DEPTH)/base/base.gyp:base',
460 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 460 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
461 '<(DEPTH)/skia/skia.gyp:skia',
461 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 462 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
462 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 463 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
463 ], 464 ],
464 'defines': [ 465 'defines': [
465 'CC_SURFACES_IMPLEMENTATION=1', 466 'CC_SURFACES_IMPLEMENTATION=1',
466 ], 467 ],
467 'sources': [ 468 'sources': [
468 'surfaces/surface.cc', 469 'surfaces/surface.cc',
469 'surfaces/surface.h', 470 'surfaces/surface.h',
471 'surfaces/surface_aggregator.cc',
472 'surfaces/surface_aggregator.h',
470 'surfaces/surface_manager.cc', 473 'surfaces/surface_manager.cc',
471 'surfaces/surface_manager.h', 474 'surfaces/surface_manager.h',
472 'surfaces/surfaces_export.h', 475 'surfaces/surfaces_export.h',
473 ], 476 ],
474 }, 477 },
475 ], 478 ],
476 } 479 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698