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