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

Side by Side Diff: ui/compositor/compositor.gyp

Issue 553213003: Avoid destroying surface before the parent surface stops referencing it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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.
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': 'compositor', 11 'target_name': 'compositor',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/cc/cc.gyp:cc', 16 '<(DEPTH)/cc/cc.gyp:cc',
17 '<(DEPTH)/cc/cc.gyp:cc_surfaces',
17 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common', 18 '<(DEPTH)/gpu/gpu.gyp:command_buffer_common',
18 '<(DEPTH)/skia/skia.gyp:skia', 19 '<(DEPTH)/skia/skia.gyp:skia',
19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
21 '<(DEPTH)/ui/gl/gl.gyp:gl', 22 '<(DEPTH)/ui/gl/gl.gyp:gl',
22 ], 23 ],
23 'defines': [ 24 'defines': [
24 'COMPOSITOR_IMPLEMENTATION', 25 'COMPOSITOR_IMPLEMENTATION',
25 ], 26 ],
26 'sources': [ 27 'sources': [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ], 81 ],
81 }], 82 }],
82 ], 83 ],
83 }, 84 },
84 { 85 {
85 'target_name': 'compositor_test_support', 86 'target_name': 'compositor_test_support',
86 'type': 'static_library', 87 'type': 'static_library',
87 'dependencies': [ 88 'dependencies': [
88 '<(DEPTH)/base/base.gyp:base', 89 '<(DEPTH)/base/base.gyp:base',
89 '<(DEPTH)/cc/cc.gyp:cc', 90 '<(DEPTH)/cc/cc.gyp:cc',
91 '<(DEPTH)/cc/cc.gyp:cc_surfaces',
90 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 92 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
91 '<(DEPTH)/skia/skia.gyp:skia', 93 '<(DEPTH)/skia/skia.gyp:skia',
92 '<(DEPTH)/testing/gtest.gyp:gtest', 94 '<(DEPTH)/testing/gtest.gyp:gtest',
93 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', 95 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal',
94 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 96 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
95 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 97 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
96 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
97 '<(DEPTH)/ui/gl/gl.gyp:gl', 99 '<(DEPTH)/ui/gl/gl.gyp:gl',
98 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 100 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
99 'compositor', 101 'compositor',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 'dependencies': [ 174 'dependencies': [
173 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 175 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
174 ], 176 ],
175 }], 177 }],
176 ], 178 ],
177 }], 179 }],
178 ], 180 ],
179 }, 181 },
180 ], 182 ],
181 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698