| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |