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