| 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 'cc_source_files': [ | 8 'cc_source_files': [ |
| 9 'animation/animation.cc', | 9 'animation/animation.cc', |
| 10 'animation/animation.h', | 10 'animation/animation.h', |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 { | 350 { |
| 351 'target_name': 'cc', | 351 'target_name': 'cc', |
| 352 'type': '<(component)', | 352 'type': '<(component)', |
| 353 'dependencies': [ | 353 'dependencies': [ |
| 354 '<(DEPTH)/base/base.gyp:base', | 354 '<(DEPTH)/base/base.gyp:base', |
| 355 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 355 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 356 '<(DEPTH)/gpu/gpu.gyp:gpu', | 356 '<(DEPTH)/gpu/gpu.gyp:gpu', |
| 357 '<(DEPTH)/skia/skia.gyp:skia', | 357 '<(DEPTH)/skia/skia.gyp:skia', |
| 358 '<(DEPTH)/media/media.gyp:media', | 358 '<(DEPTH)/media/media.gyp:media', |
| 359 '<(DEPTH)/ui/gl/gl.gyp:gl', | 359 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 360 '<(DEPTH)/ui/surface/surface.gyp:surface', | |
| 361 '<(DEPTH)/ui/ui.gyp:ui', | 360 '<(DEPTH)/ui/ui.gyp:ui', |
| 362 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 361 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 363 ], | 362 ], |
| 364 'defines': [ | 363 'defines': [ |
| 365 'CC_IMPLEMENTATION=1', | 364 'CC_IMPLEMENTATION=1', |
| 366 ], | 365 ], |
| 367 'sources': [ | 366 'sources': [ |
| 368 '<@(cc_source_files)', | 367 '<@(cc_source_files)', |
| 369 ], | 368 ], |
| 370 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 369 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 371 'msvs_disabled_warnings': [ 4267, ], | 370 'msvs_disabled_warnings': [ 4267, ], |
| 372 }, | 371 }, |
| 373 ], | 372 ], |
| 374 } | 373 } |
| OLD | NEW |