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

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

Issue 6722026: Refactor: Move app/gfx/gl ==> ui/gfx/gl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Try removing a dep. Created 9 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « media/tools/tile_render_bench/tile_render_bench.cc ('k') | ui/gfx/compositor/compositor_gl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'compositor', 8 'target_name': 'compositor',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '21CEE0E3-6F4E-4F01-B8C9-F7751CC21AA9', 10 'msvs_guid': '21CEE0E3-6F4E-4F01-B8C9-F7751CC21AA9',
11 'dependencies': [ 11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base', 12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/app/app.gyp:app_base', 13 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
14 '<(DEPTH)/ui/ui.gyp:ui_gfx', 14 '<(DEPTH)/ui/ui.gyp:ui_gfx',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'compositor.cc', 17 'compositor.cc',
18 'compositor_gl.cc', 18 'compositor_gl.cc',
19 'compositor.h', 19 'compositor.h',
20 ], 20 ],
21 'conditions': [ 21 'conditions': [
22 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 22 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
23 'sources!': [ 23 'sources!': [
24 'compositor.cc', 24 'compositor.cc',
25 ], 25 ],
26 }, { 26 }, {
27 'sources!': [ 27 'sources!': [
28 'compositor_gl.cc', 28 'compositor_gl.cc',
29 ] 29 ]
30 }], 30 }],
31 ], 31 ],
32 }, 32 },
33 ], 33 ],
34 } 34 }
OLDNEW
« no previous file with comments | « media/tools/tile_render_bench/tile_render_bench.cc ('k') | ui/gfx/compositor/compositor_gl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698