| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //cc/blink | 8 # GN version: //cc/blink |
| 9 'target_name': 'cc_blink', | 9 'target_name': 'cc_blink', |
| 10 'type': '<(component)', | 10 'type': '<(component)', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../../gpu/gpu.gyp:command_buffer_common', | 12 '../../gpu/gpu.gyp:command_buffer_common', |
| 13 '../../base/base.gyp:base', | 13 '../../base/base.gyp:base', |
| 14 '../../third_party/WebKit/public/blink.gyp:blink', | 14 '../../third_party/WebKit/public/blink.gyp:blink', |
| 15 '../../skia/skia.gyp:skia', | 15 '../../skia/skia.gyp:skia', |
| 16 '../cc.gyp:cc', | 16 '../cc.gyp:cc', |
| 17 '../../ui/gfx/gfx.gyp:gfx', | 17 '../../ui/gfx/gfx.gyp:gfx', |
| 18 '../../ui/gfx/gfx.gyp:gfx_geometry', | 18 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 19 ], | 19 ], |
| 20 'defines': [ | 20 'defines': [ |
| 21 'CC_BLINK_IMPLEMENTATION', | 21 'CC_BLINK_IMPLEMENTATION', |
| 22 ], | 22 ], |
| 23 'export_dependent_settings': [ | 23 'export_dependent_settings': [ |
| 24 '../../skia/skia.gyp:skia', | 24 '../../skia/skia.gyp:skia', |
| 25 ], | 25 ], |
| 26 # This sources list is duplicated in //cc/blink/BUILD.gn | 26 # This sources list is duplicated in //cc/blink/BUILD.gn |
| 27 'sources': [ | 27 'sources': [ |
| 28 'cc_blink_export.h', | 28 'cc_blink_export.h', |
| 29 'context_provider_web_context.h', |
| 29 'scrollbar_impl.cc', | 30 'scrollbar_impl.cc', |
| 30 'scrollbar_impl.h', | 31 'scrollbar_impl.h', |
| 31 'web_animation_curve_common.cc', | 32 'web_animation_curve_common.cc', |
| 32 'web_animation_curve_common.h', | 33 'web_animation_curve_common.h', |
| 33 'web_animation_impl.cc', | 34 'web_animation_impl.cc', |
| 34 'web_animation_impl.h', | 35 'web_animation_impl.h', |
| 35 'web_compositor_support_impl.cc', | 36 'web_compositor_support_impl.cc', |
| 36 'web_compositor_support_impl.h', | 37 'web_compositor_support_impl.h', |
| 37 'web_content_layer_impl.cc', | 38 'web_content_layer_impl.cc', |
| 38 'web_content_layer_impl.h', | 39 'web_content_layer_impl.h', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 63 'web_to_cc_animation_delegate_adapter.cc', | 64 'web_to_cc_animation_delegate_adapter.cc', |
| 64 'web_to_cc_animation_delegate_adapter.h', | 65 'web_to_cc_animation_delegate_adapter.h', |
| 65 'web_transform_animation_curve_impl.cc', | 66 'web_transform_animation_curve_impl.cc', |
| 66 'web_transform_animation_curve_impl.h', | 67 'web_transform_animation_curve_impl.h', |
| 67 'web_transform_operations_impl.cc', | 68 'web_transform_operations_impl.cc', |
| 68 'web_transform_operations_impl.h', | 69 'web_transform_operations_impl.h', |
| 69 ], | 70 ], |
| 70 }, | 71 }, |
| 71 ] | 72 ] |
| 72 } | 73 } |
| OLD | NEW |