| 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 { |
| 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 'variables': { |
| 25 'optimize': 'max', |
| 26 }, |
| 24 'export_dependent_settings': [ | 27 'export_dependent_settings': [ |
| 25 '<(DEPTH)/skia/skia.gyp:skia', | 28 '<(DEPTH)/skia/skia.gyp:skia', |
| 26 ], | 29 ], |
| 27 'defines': [ | 30 'defines': [ |
| 28 'CC_IMPLEMENTATION=1', | 31 'CC_IMPLEMENTATION=1', |
| 29 ], | 32 ], |
| 30 'sources': [ | 33 'sources': [ |
| 31 'animation/animation.cc', | 34 'animation/animation.cc', |
| 32 'animation/animation.h', | 35 'animation/animation.h', |
| 33 'animation/animation_curve.cc', | 36 'animation/animation_curve.cc', |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 'surfaces/surface.h', | 479 'surfaces/surface.h', |
| 477 'surfaces/surface_aggregator.cc', | 480 'surfaces/surface_aggregator.cc', |
| 478 'surfaces/surface_aggregator.h', | 481 'surfaces/surface_aggregator.h', |
| 479 'surfaces/surface_manager.cc', | 482 'surfaces/surface_manager.cc', |
| 480 'surfaces/surface_manager.h', | 483 'surfaces/surface_manager.h', |
| 481 'surfaces/surfaces_export.h', | 484 'surfaces/surfaces_export.h', |
| 482 ], | 485 ], |
| 483 }, | 486 }, |
| 484 ], | 487 ], |
| 485 } | 488 } |
| OLD | NEW |