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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 '<(DEPTH)/base/base.gyp:base', | 481 '<(DEPTH)/base/base.gyp:base', |
482 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 482 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
483 '<(DEPTH)/skia/skia.gyp:skia', | 483 '<(DEPTH)/skia/skia.gyp:skia', |
484 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 484 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
485 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 485 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
486 ], | 486 ], |
487 'defines': [ | 487 'defines': [ |
488 'CC_SURFACES_IMPLEMENTATION=1', | 488 'CC_SURFACES_IMPLEMENTATION=1', |
489 ], | 489 ], |
490 'sources': [ | 490 'sources': [ |
| 491 'surfaces/display.cc', |
| 492 'surfaces/display.h', |
| 493 'surfaces/display_client.h', |
491 'surfaces/surface.cc', | 494 'surfaces/surface.cc', |
492 'surfaces/surface.h', | 495 'surfaces/surface.h', |
493 'surfaces/surface_aggregator.cc', | 496 'surfaces/surface_aggregator.cc', |
494 'surfaces/surface_aggregator.h', | 497 'surfaces/surface_aggregator.h', |
| 498 'surfaces/surface_client.h', |
495 'surfaces/surface_manager.cc', | 499 'surfaces/surface_manager.cc', |
496 'surfaces/surface_manager.h', | 500 'surfaces/surface_manager.h', |
497 'surfaces/surfaces_export.h', | 501 'surfaces/surfaces_export.h', |
498 ], | 502 ], |
499 }, | 503 }, |
500 ], | 504 ], |
501 } | 505 } |
OLD | NEW |