Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1170)

Side by Side Diff: content/renderer/compositor_bindings/compositor_bindings.gyp

Issue 317163002: Moving compositor_bindings from webkit to content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
jam 2014/06/05 15:24:07 this should be a part of content_renderer.gypi
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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'webkit_compositor_support', 11 'target_name': 'content_compositor_support',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/skia/skia.gyp:skia', 14 '<(DEPTH)/skia/skia.gyp:skia',
15 '<(DEPTH)/cc/cc.gyp:cc', 15 '<(DEPTH)/cc/cc.gyp:cc',
16 'webkit_compositor_bindings', 16 'content_compositor_bindings',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'web_compositor_support_impl.cc', 19 'web_compositor_support_impl.cc',
20 'web_compositor_support_impl.h', 20 'web_compositor_support_impl.h',
21 ], 21 ],
22 'include_dirs': [ 22 'include_dirs': [
23 '../..', 23 '../..',
24 '<(SHARED_INTERMEDIATE_DIR)/webkit', 24 '<(SHARED_INTERMEDIATE_DIR)/webkit',
25 ], 25 ],
26 }, 26 },
27 { 27 {
28 'target_name': 'webkit_compositor_bindings', 28 'target_name': 'content_compositor_bindings',
29 'type': '<(component)', 29 'type': '<(component)',
30 'dependencies': [ 30 'dependencies': [
31 '<(DEPTH)/base/base.gyp:base', 31 '<(DEPTH)/base/base.gyp:base',
32 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 32 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
33 '<(DEPTH)/cc/cc.gyp:cc', 33 '<(DEPTH)/cc/cc.gyp:cc',
34 '<(DEPTH)/gpu/gpu.gyp:gpu', 34 '<(DEPTH)/gpu/gpu.gyp:gpu',
35 '<(DEPTH)/media/media.gyp:media', 35 '<(DEPTH)/media/media.gyp:media',
36 '<(DEPTH)/skia/skia.gyp:skia', 36 '<(DEPTH)/skia/skia.gyp:skia',
37 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 37 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
38 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 38 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
39 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 39 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
40 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 40 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
41 ], 41 ],
42 'defines': [ 42 'defines': [
43 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' 43 'CONTENT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1'
44 ], 44 ],
45 'sources': [ 45 'sources': [
46 'scrollbar_impl.cc', 46 'scrollbar_impl.cc',
47 'scrollbar_impl.h', 47 'scrollbar_impl.h',
48 'web_animation_curve_common.cc', 48 'web_animation_curve_common.cc',
49 'web_animation_curve_common.h', 49 'web_animation_curve_common.h',
50 'web_animation_impl.cc', 50 'web_animation_impl.cc',
51 'web_animation_impl.h', 51 'web_animation_impl.h',
52 'web_content_layer_impl.cc', 52 'web_content_layer_impl.cc',
53 'web_content_layer_impl.h', 53 'web_content_layer_impl.h',
(...skipping 24 matching lines...) Expand all
78 'web_to_cc_animation_delegate_adapter.cc', 78 'web_to_cc_animation_delegate_adapter.cc',
79 'web_to_cc_animation_delegate_adapter.h', 79 'web_to_cc_animation_delegate_adapter.h',
80 'web_transform_animation_curve_impl.cc', 80 'web_transform_animation_curve_impl.cc',
81 'web_transform_animation_curve_impl.h', 81 'web_transform_animation_curve_impl.h',
82 'web_transform_operations_impl.cc', 82 'web_transform_operations_impl.cc',
83 'web_transform_operations_impl.h', 83 'web_transform_operations_impl.h',
84 ], 84 ],
85 }, 85 },
86 ], 86 ],
87 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698