| 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)/third_party/WebKit/public/blink.gyp:blink_minimal', | 19 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
| 20 '<(DEPTH)/ui/events/events.gyp:events', | 20 '<(DEPTH)/ui/events/events.gyp:events_base', |
| 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 22 '<(DEPTH)/ui/gl/gl.gyp:gl', | 22 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 23 ], | 23 ], |
| 24 'defines': [ | 24 'defines': [ |
| 25 'CC_IMPLEMENTATION=1', | 25 'CC_IMPLEMENTATION=1', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'animation/animation.cc', | 28 'animation/animation.cc', |
| 29 'animation/animation.h', | 29 'animation/animation.h', |
| 30 'animation/animation_curve.cc', | 30 'animation/animation_curve.cc', |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 'trees/thread_proxy.cc', | 417 'trees/thread_proxy.cc', |
| 418 'trees/thread_proxy.h', | 418 'trees/thread_proxy.h', |
| 419 'trees/tree_synchronizer.cc', | 419 'trees/tree_synchronizer.cc', |
| 420 'trees/tree_synchronizer.h', | 420 'trees/tree_synchronizer.h', |
| 421 ], | 421 ], |
| 422 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 422 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 423 'msvs_disabled_warnings': [ 4267, ], | 423 'msvs_disabled_warnings': [ 4267, ], |
| 424 }, | 424 }, |
| 425 ], | 425 ], |
| 426 } | 426 } |
| OLD | NEW |