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

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

Issue 8574033: Beginnings of Window Modality support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 9 'target_defaults': {
10 'sources/': [ 10 'sources/': [
(...skipping 11 matching lines...) Expand all
22 'targets': [ 22 'targets': [
23 { 23 {
24 'target_name': 'compositor', 24 'target_name': 'compositor',
25 'type': '<(component)', 25 'type': '<(component)',
26 'dependencies': [ 26 'dependencies': [
27 '<(DEPTH)/base/base.gyp:base', 27 '<(DEPTH)/base/base.gyp:base',
28 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 28 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
29 '<(DEPTH)/skia/skia.gyp:skia', 29 '<(DEPTH)/skia/skia.gyp:skia',
30 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', 30 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
31 '<(DEPTH)/ui/ui.gyp:ui', 31 '<(DEPTH)/ui/ui.gyp:ui',
32 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
33 ], 32 ],
34 'defines': [ 33 'defines': [
35 'COMPOSITOR_IMPLEMENTATION', 34 'COMPOSITOR_IMPLEMENTATION',
36 ], 35 ],
37 'sources': [ 36 'sources': [
38 'compositor.cc', 37 'compositor.cc',
39 'compositor.h', 38 'compositor.h',
40 'compositor_export.h', 39 'compositor_export.h',
41 'compositor_gl.cc', 40 'compositor_gl.cc',
42 'compositor_gl.h', 41 'compositor_gl.h',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ['OS == "win" and views_compositor == 0', { 86 ['OS == "win" and views_compositor == 0', {
88 'sources/': [ 87 'sources/': [
89 ['exclude', '^compositor_win.cc'], 88 ['exclude', '^compositor_win.cc'],
90 ], 89 ],
91 }], 90 }],
92 ['use_webkit_compositor == 1', { 91 ['use_webkit_compositor == 1', {
93 'sources/': [ 92 'sources/': [
94 ['exclude', '^compositor_(gl|win|stub).(h|cc)$'], 93 ['exclude', '^compositor_(gl|win|stub).(h|cc)$'],
95 ], 94 ],
96 'dependencies': [ 95 'dependencies': [
96 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit',
97 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', 97 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi',
98 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 98 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
99 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', 99 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu',
100 ], 100 ],
101 }, { 101 }, {
102 'sources!': [ 102 'sources!': [
103 'compositor_cc.cc', 103 'compositor_cc.cc',
104 'compositor_cc.h', 104 'compositor_cc.h',
105 ], 105 ],
106 } 106 }
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'test_compositor.cc', 195 'test_compositor.cc',
196 'test_compositor.h', 196 'test_compositor.h',
197 'test_texture.cc', 197 'test_texture.cc',
198 'test_texture.h', 198 'test_texture.h',
199 ], 199 ],
200 }], 200 }],
201 ], 201 ],
202 }, 202 },
203 ], 203 ],
204 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698