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