| 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 'cc_source_files': [ | 7 'cc_source_files': [ |
| 8 'animation.cc', | 8 'animation.cc', |
| 9 'animation.h', | 9 'animation.h', |
| 10 'animation_curve.cc', | 10 'animation_curve.cc', |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 ], | 336 ], |
| 337 }], | 337 }], |
| 338 ], | 338 ], |
| 339 'targets': [ | 339 'targets': [ |
| 340 { | 340 { |
| 341 'target_name': 'cc', | 341 'target_name': 'cc', |
| 342 'type': '<(component)', | 342 'type': '<(component)', |
| 343 'dependencies': [ | 343 'dependencies': [ |
| 344 '<(DEPTH)/base/base.gyp:base', | 344 '<(DEPTH)/base/base.gyp:base', |
| 345 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 345 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 346 '<(DEPTH)/gpu/gpu.gyp:gpu', |
| 346 '<(DEPTH)/skia/skia.gyp:skia', | 347 '<(DEPTH)/skia/skia.gyp:skia', |
| 347 '<(DEPTH)/media/media.gyp:media', | 348 '<(DEPTH)/media/media.gyp:media', |
| 348 '<(DEPTH)/ui/gl/gl.gyp:gl', | 349 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 349 '<(DEPTH)/ui/ui.gyp:ui', | 350 '<(DEPTH)/ui/ui.gyp:ui', |
| 350 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 351 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 351 ], | 352 ], |
| 352 'defines': [ | 353 'defines': [ |
| 353 'CC_IMPLEMENTATION=1', | 354 'CC_IMPLEMENTATION=1', |
| 354 ], | 355 ], |
| 355 'sources': [ | 356 'sources': [ |
| 356 '<@(cc_source_files)', | 357 '<@(cc_source_files)', |
| 357 ], | 358 ], |
| 358 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 359 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 359 'msvs_disabled_warnings': [ 4267, ], | 360 'msvs_disabled_warnings': [ 4267, ], |
| 360 }, | 361 }, |
| 361 ], | 362 ], |
| 362 } | 363 } |
| OLD | NEW |